{% extends 'pybb/base.html' %} {% load pybb_tags i18n %} {% block title %}{{ forum.name }}{% endblock title %} {% block breadcrumb %} {{ block.super }} / {% pybb_link forum.category %} / {{ forum }} {% endblock %} {% block content %}

{{ forum.name }}

{% if forum.headline %}
{{ forum.headline|safe }}
{% endif %} {% include "pybb/pagination/pagination.html" %} {% for topic in topic_list|pybb_topic_unread:user %} {% endfor %}
{% trans "Topic" %} {% trans "Posts" %} {% trans "Views" %} {% trans "Last post" %}
{{ topic.name }} {% if topic.sticky %}  [{% trans "Sticky" %}] {% endif %} {% if topic.closed %}  [{% trans "Closed" %}] {% endif %} {{ topic.post_count }} {{ topic.views }} {% if topic.updated %} {{ topic.updated|date:"d.m.Y H:i" }} {% endif %}
{% include "pybb/pagination/pagination.html" %} {% if not user.get_profile.is_banned %}
{% if PYBB_BUTTONS.new_topic %} {% trans "New topic" %} {% else %} {% trans "New topic" %} {% endif %}
{% endif %} {% endblock content %}