{% from 'common/pager.html' import pager %} {% extends "base.html" %} {% block title %}browsing topic {{ topic['name'] }}{% endblock %} {% block content %} {% if topic['is_locked'] %} {{ infobox("This topic is locked. Only moderators can create new threads.", InfoboxKind.INFO) }} {% endif %} {% if threads_list | length == 0 %}

There are no threads in this topic.

{% else %} {% for thread in threads_list %}
{% if thread['is_stickied'] %} Stickied {% endif %}
{{thread['title']}} • Started by {{ thread['started_by'] }} on ... Latest post by {{ thread['latest_post_username'] }} on ... {{ thread['latest_post_content'] }}
{% if thread['is_locked'] %} Locked {% endif %}
{% endfor %} {% endif %} {% endblock %}