{% extends 'pybb/base.html' %} {% load pybb_tags i18n %} {% block title %}{{ forum.name }}{% endblock title %} {% block breadcrumb %} {% with forum as object %} {% include "pybb/breadcrumb.html" %} {% endwith %} {% endblock %} {% block content %}

{{ forum.name }}

{% if forum.headline %}
{{ forum.headline|safe }}
{% endif %} {% include "pybb/pagination.html" %} {% for topic in topic_list|pybb_topic_unread:user %} {% endfor %}
{% trans "Topic" %} {% trans "Posts" %} {% trans "Views" %} {% trans "Last post" %}
{{ topic.name|truncatewords:10 }} {% if topic.sticky %}  [{% trans "Sticky" %}] {% endif %} {% if topic.closed %}  [{% trans "Closed" %}] {% endif %} {% with topic|pybb_topic_inline_pagination as pages %} {% if pages|length > 1 %} {% trans "pages" %}: {% for page in pages %} {% if page == "..." %} ... {% else %} {{ page }} {% endif %} {% endfor %} {% endif %} {% endwith %}
{{ topic.post_count }} {{ topic.views }} {% if topic.updated %} {{ topic.updated|date:"d.m.Y H:i" }} {% endif %}
{% include "pybb/pagination.html" %} {% if PYBB_ENABLE_ANONYMOUS_POST or not user.get_profile.is_banned %}
{% if PYBB_BUTTONS.new_topic %} {% trans "New topic" %} {% else %} {% trans "New topic" %} {% endif %}
{% endif %} {% endblock content %}