{% extends "misago/base.html" %} {% load i18n misago_stringutils %} {% block title %}{{ forum.name }} | {{ block.super }}{% endblock title %} {% block meta-description %}{{ forum.description|striplinebreaks }}{% endblock meta-description %} {% block content %}
{% if forum.description %}
{{ forum.description|escape|urlize|linebreaks }}
{% endif %} {% if forum.subforums %} {% include "misago/forums/subforums.html" with category=forum %} {% endif %}
{% if forum.is_closed %} {% trans "This forum is closed." %} {% else %} {% if user.is_anonymous %} {% trans "Sign in to start thread" %} {% elif forum.acl.can_start_threads %} {% trans "Start thread" %} {% else %} {% trans "Can't start threads" %} {% endif %} {% endif %}
{% trans "No threads were posted in this forum, or you don't have permission to see them." %}
{% endblock content %} {% block javascripts %} {{ block.super }} {% include "misago/forums/js.html" %} {% endblock javascripts %}