{% extends "misago/base.html" %} {% load humanize i18n misago_avatars 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 %}
    {% for thread in threads %}
  • {% if thread.is_announcement %} {% if thread.is_new %} {% else %} {% endif %} {% elif thread.is_pinned %} {% if thread.is_new %} {% else %} {% endif %} {% else %} {% if thread.is_new %} {% else %} {% endif %} {% endif %} {{ thread.title }}
      {% if thread.has_reported_posts %}
    • {% endif %} {% if thread.has_moderated_posts and not thread.is_moderated %}
    • {% endif %} {% if thread.is_poll %}
    • {% endif %} {% if thread.is_moderated %}
    • {% endif %} {% if thread.is_closed %}
    • {% endif %}
    {{ thread.replies|intcomma }}
    {% if thread.last_poster_id %} {% trans {% else %} {% trans {% endif %} {{ thread.last_post_on|date }}
  • {% empty %}
  • {% trans "No threads were posted in this forum, or you don't have permission to see them." %}
  • {% endfor %}
{% endblock content %} {% block javascripts %} {{ block.super }} {% include "misago/forums/js.html" %} {% endblock javascripts %}