{% extends "misago/threads/base.html" %} {% load i18n misago_stringutils %} {% block title %}{{ forum }}{% if page.number > 1 %} ({% blocktrans with page=page.number %}Page {{ page }}{% endblocktrans %}){% endif %} | {{ block.super }}{% endblock title %} {% block meta-description %}{{ forum.description|striplinebreaks }}{% endblock meta-description %} {% block content %} {{ block.super }} {% endblock content %} {% block threads-list %} {% if forum.description %}
{{ forum.description|escape|urlize|linebreaks }}
{% endif %} {% if forum.subforums %} {% include "misago/forums/subforums.html" with category=forum %} {% endif %} {{ block.super }} {% endblock threads-list %} {% block threads-panel %}
{% include "misago/threads/paginator.html" %} {% if user.is_authenticated %} {% include "misago/threads/sort.html" %} {% include "misago/threads/show.html" %} {% endif %} {% if threads_actions %} {% include "misago/threads/actions.html" %} {% endif %} {% include "misago/threads/start_btn.html" %}
{{ block.super }}
{% include "misago/threads/paginator.html" %} {% include "misago/threads/start_btn.html" %} {% if not forum.is_read and user.is_authenticated %}
{% csrf_token %}
{% endif %}
{% endblock threads-panel %} {% block no-threads %} {% if filtering.is_active %} {% trans "No threads matching criteria exist, or you don't have permission to see them." %} {% trans "See all threads" %} {% else %} {% trans "No threads were posted in this forum, or you don't have permission to see them." %} {% endif %} {% endblock no-threads %} {% block javascripts %} {{ block.super }} {% include "misago/forums/js.html" %} {% if threads_actions %} {% include "misago/threads/actions_js.html" %} {% endif %} {% if forum.acl.can_start_threads %} {% endif %} {% endblock javascripts %}