{% extends "base.html" %} {% block title %}Bookmarks - red-plex{% endblock %} {% block content %}

Bookmarks

Convert Bookmarks
Stored Bookmark Collections
{% if bookmarks %}
{% for bookmark in bookmarks %} {% endfor %}
Name Site Created Last Updated Actions
{{ bookmark.name or 'Bookmarks Collection' }} {{ bookmark.site.upper() }} {% if bookmark.created_at %} {{ bookmark.created_at.strftime('%Y-%m-%d %H:%M') }} {% else %} Unknown {% endif %} {% if bookmark.updated_at %} {{ bookmark.updated_at.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %}
{% else %}
No Bookmark Collections Found

You haven't converted any bookmarks yet.

Convert Your Bookmarks
{% endif %}
{% endblock %}