{% extends 'base.html' %} {%- from 'moderator.html' import moderate_thread with context %} {%- macro nav() -%}

{%- if prev_page is not none %}prev{% endif -%} {%- if prev_page is not none and next_page is not none %} | {% endif -%} {%- if next_page is not none %}next{% endif -%}

{%- endmacro -%} {% block content -%}

{{ minimd(description) | safe }}

« Forum list | Create thread

{{- nav() -}} {%- if user is not none and user.is_moderator() -%} {%- endif -%} {% for id, title, ctime, utime, author_id, author, comment_count, hidden in threads %} {%- endfor -%}
Topic Author Created Updated CommentsAction
{{ '[hidden] ' if hidden else '' }}{{ title }} {{ author }} {{ format_since(ctime) }} {{ format_since(utime) }} {{ comment_count }} {%- if user is not none and user.is_moderator() %} {{- moderate_thread(id, hidden) }} {%- endif -%}
{{- nav() -}} {% endblock %}