{% extends 'base.html' %} {% block content %}

{{ thread.topic_name }}

{{ thread.title }}

{{ thread.topic_description or 'Forum topic discussion.' }}

Started by {{ thread.created_by_name }} · {{ thread.created_at }}{% if thread.is_pinned %} · Pinned{% endif %}{% if thread.is_locked %} · Locked{% endif %}

Back to topic {% if can_moderate %}
{% endif %}
{% if can_manage_forum %}
{% endif %}
{% for post in posts %}
{{ post.username }} {{ post.created_at }}
{% if post.is_hidden %}

This post is hidden by moderation{% if post.moderated_by_name %} · {{ post.moderated_by_name }}{% endif %}{% if post.moderated_at %} · {{ post.moderated_at }}{% endif %}

{% if can_manage_forum %}

{{ post.message }}

{% endif %} {% else %}

{{ post.message }}

{% endif %} {% if can_manage_forum %}
{% endif %}
{% endfor %}

Reply

{% if thread.is_locked %}

This thread is locked. Only reading is available right now.

{% elif not can_reply %}

You can read this topic, but your account cannot reply here.

{% else %}
{% endif %}
{% endblock %}