{% extends "base.html" %} {% if not action %} {% set action = 'Bookmarks' %} {% endif %} {% block title %}{{ action }}{% endblock %} {% block pageheader %}{{ action }}{% endblock %} {% block pagecontent %} {% if message %}
{{ message }}
{% endif %}
{% for bookmark in bookmarks %}
more_vert {% if bookmark.http_status != 200 %} report_problem {% endif %} {% if bookmark.favicon %}     {% endif %}

{% if bookmark.starred == True %} star {% endif %} {% if bookmark.title %} {{ bookmark.title }} {% else %} [ no title ] {% endif %}

Added @ {{ bookmark.created_date.strftime('%Y-%m-%d %H:%M') }}close
{% if bookmark.favicon %}     {% endif %}
{% endfor %}
{% endblock %}