{% extends "base.html" %} {% block title %}{{ category.name }} - Forum{% endblock %} {% block content %}
Category

{{ category.name }}

{{ category.description }}

{{ topics.total if topics else 0 }} Topics
{% include "forum/partials/topic_list.html" %}
{% if topics and topics.pages > 1 %}
{% if topics.has_prev %} ← Previous {% endif %} Page {{ topics.page }} of {{ topics.pages }} {% if topics.has_next %} Next → {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}