{% 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 %}
{% 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 %} |