{% if authorized_user %} Create New Thread {% endif %} {% if pinned_threads %}

Pinned Threads

{% for thread in pinned_threads %}
{{ thread["title"] }}
by {{ usermap[thread["author"]]["user_name"] }}
Created: {{ thread["created"] }}
{{ thread["reply_count"] }} replies; active {{ thread["last_mod"] }}
last active by {{ usermap[thread["last_author"]]["user_name"] }}
{% endfor %}
{% endif %} {% if bookmarked_threads %}

Bookmarked Threads

{% for thread in bookmarked_threads %}
{{ thread["title"] }}
by {{ usermap[thread["author"]]["user_name"] }}
Created: {{ thread["created"] }}
{{ thread["reply_count"] }} replies; active {{ thread["last_mod"] }}
last active by {{ usermap[thread["last_author"]]["user_name"] }}
Unbookmark this thread.
{% endfor %}
{% endif %} {% if threads %}

Threads

{% for thread in threads %}
{{ thread["title"] }}
by {{ usermap[thread["author"]]["user_name"] }}
Created: {{ thread["created"] }}
{{ thread["reply_count"] }} replies; active {{ thread["last_mod"] }}
last active by {{ usermap[thread["last_author"]]["user_name"] }}
Bookmark this thread.
{% endfor %}
{% endif %} {% if not threads %}

There are no threads!

{% endif %} replies