{% from 'common/macros.html' import timestamp, subheader %} {%- extends 'base.html' -%} {%- block content -%} {%- call() subheader('All topics') -%} {%- if is_mod() -%}
Moderation actions New topic Sort topics
{%- endif -%} {%- endcall -%} {%- for topic in topics -%}
{{topic.name}}
{{topic.description}}
{%- if topic.latest_post_timestamp -%} Latest post at: {{timestamp(topic.latest_post_timestamp)}} {%- else -%} No posts yet {%- endif -%}
{%- endfor -%} {%- endblock -%}