{% from 'common/macros.html' import pager, timestamp, motd %} {% from 'common/icons.html' import icn_lock, icn_sticky %} {% 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 %} {%- with motds = get_motds() -%} {%- if motds -%} {%- for motd_obj in motds -%} {{- motd(motd_obj) -}} {%- endfor -%} {%- endif -%} {%- endwith -%} {% if threads_list | length == 0 %}

There are no threads in this topic.

{% else %} {% for thread in threads_list %}
{% if thread['is_stickied'] %} {{ icn_sticky(48) }} Stickied {% endif %}
{{thread['title']}} {% if thread['id'] in subscriptions %} ({{ subscriptions[thread['id']] }} unread) {% endif %} Started by {{ thread['started_by'] }} on {{ timestamp(thread['created_at']) }} Latest post by {{ thread['latest_post_username'] }} on on {{ timestamp(thread['latest_post_created_at']) }}: {{ thread['latest_post_content'] | safe }}
{% if thread['is_locked'] %} {{ icn_lock(48) }} Locked {% endif %}
{% endfor %} {% endif %}
Are you sure you want to delete this topic?
{% endblock %}