{% from 'common/icons.html' import icn_lock %} {% from 'common/macros.html' import timestamp, motd %} {% extends "base.html" %} {% block content %} {%- with motds = get_motds() -%} {%- if motds -%} {%- for motd_obj in motds -%} {{- motd(motd_obj) -}} {%- endfor -%} {%- endif -%} {%- endwith -%} {% if topic_list | length == 0 %}

There are no topics.

{% else %} {% for topic in topic_list %}
{{ topic['name'] }} {{ topic['description'] }} {% if topic['latest_thread_username'] %} Latest thread: {{topic['latest_thread_title']}} by {{topic['latest_thread_display_name'] or topic['latest_thread_username']}} on {{ timestamp(topic['latest_thread_created_at']) }} {% if topic['id'] in active_threads %} {% with thread=active_threads[topic['id']] %} Latest post in: {{ thread['thread_title'] }} by {{ thread['display_name'] or thread['username'] }} at {{ timestamp(thread['post_created_at']) }} {% endwith %} {% endif %} {% else %} No threads yet. {% endif %}
{% if topic['is_locked'] %} {{ icn_lock(48) }} Locked {% endif %}
{% endfor %} {% endif %} {% endblock %}