{% extends "admin/base.html" %} {% block logo %}

Threads

{% endblock %} {% block main %}

{{ forum.name }}

{{ forum.description }}

Back to Forums
{% for thread in threads %} {% else %} {% endfor %}
Title Author Pinned Locked Posts Created Actions
{{ thread.title }} {{ thread.created_by_nick }} {% if thread.is_pinned %}Yes{% else %}No{% endif %} {% if thread.is_locked %}Yes{% else %}No{% endif %} {{ thread.post_count }} {{ thread.created_at }} Posts
No threads found
{% if total > per_page %}
{% if page > 1 %} Previous {% endif %} Page {{ page }} of {{ ((total - 1) // per_page) + 1 }} {% if page * per_page < total %} Next {% endif %}
{% endif %}
{% endblock main %}