{% extends "sora/layout.html" %} {% load i18n %} {% load url from future %} {% import "sora/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=forum.name,page=pagination['page']) }}{% endblock %} {% block breadcrumb %}{{ super() }} / {% for parent in parents %}
  • {{ parent.name }} /
  • {% endfor %}
  • {{ forum.name }} {%- endblock %} {% block content %} {% if forum.subforums %}

    {% trans %}Subforums{% endtrans %}:

    {{ macros.draw_forums(forum, 12) }}
    {% endif %} {% if message %}{{ macros.draw_message(message) }}{% endif %}
    {{ pager() }} {% if user.is_authenticated() and acl.threads.can_start_threads(forum) %} {% endif %}
    {% for thread in threads %} {% endfor %}
      {% trans %}Thread{% endtrans %} {% trans %}Author{% endtrans %} {% trans %}Replies{% endtrans %} {% trans %}Last Poster{% endtrans %}
    {% if not thread.is_read %}{{ thread.name }}{% else %}{{ thread.name }}{% endif %}[LABELS][JUMP] [ICONS] {% if thread.start_poster_id %}{{ thread.start_poster_name }}{% else %}{{ thread.start_poster_name }}{% endif %} {{ thread.replies|intcomma }} {% if thread.last_poster_id %}{{ thread.last_poster_name }}{% else %}{{ thread.last_poster_name }}{% endif %}
    {{ pager() }} {% if user.is_authenticated() and acl.threads.can_start_threads(forum) %} {% endif %}
    {% endblock %} {% macro pager() %} {% endmacro %}