{% extends "base.html" %} {% block content %}
admin :: threads
{% for t in threads %}
{% if t.hidden %} [hidden] {% endif %} {{ t.title }} by {{ t.author_username }} {{ t.created_at }}
{% if !t.hidden %}
{% else %}
{% endif %}
{% endfor %} {% if threads.is_empty() %}
no threads found
{% endif %} {% endblock %}