{% extends "base.html" %} {% block title %}Bookmarks{% endblock %} {% block pageheader %}Bookmarks{% endblock %} {% block pagecontent %} {% if message %}
{{ message }}
{% endif %}

{% if tags %}

{% for tag in tags %}

{{ tag }}
{% endfor %}

{% endif %}
{% for bookmark in bookmarks %}
{#

{{ bookmark.url|urlize(25) }}

{{ bookmark.created_date.strftime("%m/%d/%Y %H:%M") }}

#}
more_vert {% if bookmark.http_status != 200 %} report_problem {% endif %} {% if bookmark.favicon %}     {% endif %} {% for tag in bookmark.tags_list %} {% endfor %}

{% 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 %} EDIT
{% endfor %} {# #}
{% endblock %}