{% extends "front_base.html" %} {% block title %} {% spaceless %} {% if tag %} | Filed under "{{ tag.name }}" {% elif untagged %} | Untagged {% else %} | All documents {% endif %} {% endspaceless %} {% endblock %} {% block content %} {% if tag %}

{{ tag.name }}

{{ tag.html_description|safe }}
{% endif %} {% for status, documents in status_documents.items %} {% if documents|length > 0 %}

{{ status.label }}

{% for document in documents %}
{% if document.public or can_see_hidden %} 🔗 {% endif %}

{{ document.title }}

{{ document.author }} {{ document.published }}

{% endfor %} {% endif %} {% endfor %} {% endblock %} {% block meta-og %} {% if tag %} {% endif %} {% endblock %}