{% load i18n pybb_tags %}
{% 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' %}{% trans ':' %} {% for page in pages %} {% if page == '...' %} ... {% else %} {{ page }} {% endif %} {% endfor %} {% endif %} {% endwith %} | {{ topic.post_count }} | {{ topic|pybbm_calc_topic_views }} | {% include "pybb/topic_last_message_info.html" %} |