{% extends "sora/layout.html" %} {% load i18n %} {% load url from future %} {% import "_forms.html" as form_theme with context %} {% 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 %}
    {% if user.is_authenticated() and list_form %} {% endif %} {% for thread in threads %} {% if user.is_authenticated() and list_form %} {% endif %} {% else %} {% endfor %}
      {% trans %}Thread{% endtrans %} {% trans %}Author{% endtrans %} {% trans %}Replies{% endtrans %} {% trans %}Last Poster{% endtrans %}
    {% if thread.weight > 0 %} {% if thread.weight == 2 %} {% trans %}Annoucement:{% endtrans %} {%- else -%} {% trans %}Sticky:{% endtrans %} {%- endif %} {% endif %}{% if not thread.is_read %}{{ thread.name }}{% else %}{{ thread.name }}{% endif %} {% if not user.is_crawler() %}{% if not thread.is_read -%} {%- else -%} {%- endif %}{% endif %}
      {% if thread.closed %}
    • {% endif %} {% if thread.moderated %}
    • {% endif %} {% if thread.deleted %}
    • {% endif %}
    {% if thread.start_poster_id %}{% if settings.avatars_on_threads_list %} {% endif %}{{ thread.start_poster_name }}{% else %}{% if settings.avatars_on_threads_list %} {% endif %}{{ thread.start_poster_name }}{% endif %} {{ thread.replies|intcomma }} {% if thread.last_poster_id %}{% if settings.avatars_on_threads_list %} {% endif %}{{ thread.last_poster_name }}{% else %}{% if settings.avatars_on_threads_list %} {% endif %}{{ thread.last_poster_name }}{% endif %}{% if thread.forum_id == forum.pk %}{% else %} {% endif %}

    {% trans %}Looks like there are no threads in this forum.{% endtrans %}

    {% if user.is_authenticated() and acl.threads.can_start_threads(forum) %} {% trans %}Let's Change This!{% endtrans %} {% endif %}
    {% if user.is_authenticated() and list_form %} {% endif %}
    {{ pager() }} {% if user.is_authenticated() and acl.threads.can_start_threads(forum) %} {% endif %}
    {% endblock %} {% macro pager() %} {% endmacro %} {% block javascripts -%} {{ super() }} {%- if user.is_authenticated() and acl.threads.can_start_threads(forum) %} {% endif %} {%- endblock %}