{% extends 'base.html' %} {%- 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 -%}

{{ description }}

Create thread

{{- nav() -}} {% for id, title, ctime, utime, author_id, author, comment_count in threads %} {%- endfor -%}
Topic Author Created Updated Comments
{{ title }} {{ author }} {{ format_since(ctime) }} {{ format_since(utime) }} {{ comment_count }}
{{- nav() -}} {% endblock %}