{% from 'common/macros.html' import timestamp %} {%- extends 'base.html' -%} {%- block content -%} {%- 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 -%}