<- Index
{% if authorized_user %} Account:
~{{ authorized_user["user_name"] }}
{% else %}
Not logged in.
{% endif %} {% if authorized_user %}
Manage
{% else %}
Login
{% endif %}
{{ usermap[thread["author"]]["user_name"] }}
: {{ thread["title"] }}
{% if authorized_user %}
Reply to Thread
Reply:
{% endif %} {% for message in thread["messages"] %}
>{{ message["post_id"] }}
{{ usermap[message["author"]]["user_name"] }}
@
{{ message["created"] }}
{{ message["body"] }}
{% if authorized_user %}
Direct reply.
{% endif %}
{% endfor %}