{% 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 }}
{{- nav() -}}| Topic | Author | Created | Updated | Comments | {%- if user is not none and user.is_moderator() -%}Action | {%- endif -%}
|---|---|---|---|---|---|
| {{ '[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 -%} |