{% extends "base.html" %} {% if not action %} {% set action = 'Bookmarks' %} {% endif %} {% block title %}{{ action }}{% endblock %} {% block pageheader %}{{ action }}{% endblock %} {% block pagecontent %} {% if tag and not publictag %}
Create public page tag
{% endif %} {% if tag and publictag %}
Public link
{% endif %} {% 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") }}

#}
{% for tag in bookmark.tags_list %} {% endfor %} 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 %} mode_edit EDIT
{% endfor %} {# #}
{% endblock %}