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

Thread: {{ thread or "?" }}

Read-only board thread. To rule on it: /roundtable promote {{ thread }} (in-session). Back to the inbox.

{% if messages is none %}
Thread unavailable
Unknown thread id, unreadable board, or an id outside the thread namespace. Nothing to show.
{% elif not messages %}
Empty thread
The thread exists but holds no messages (it may have just expired).
{% else %}
{% for msg in messages %}
#{{ msg.id }} · {{ msg.kind }} · {{ msg.author }}{% if msg.round %} · round {{ msg.round }}{% endif %}
{{ msg.body }}
{% endfor %}
{% endif %} {% endblock %}