{% set page_title = topic.title ~ " - Topic" %} {% set active_forum_nav=True %} {% extends "layout.html" %} {% block content %} {% from 'macros.html' import render_pagination, form_field %}
{{ render_pagination(posts, url_for('forum.view_topic', topic=topic.id)) }}
{% if current_user.is_authenticated() %}
Reply {% if current_user.id == topic.user_id %} Delete Topic {% endif %}
{% endif %} {% for post in posts.items %} {% endfor %}
#{%- if posts.page == 1 -%} {{ loop.index }} {%- else -%} {{ loop.index + posts.page * per_page }} {%- endif -%} {{ post.date_created|format_date('%d %B %Y') }} {% if post.date_modified %} (Last modified: {{ post.date_modified|format_date }} by {{ post.user.username }}.) {% endif %}
Avatar {{ post.user.username }} Online
Administrator
Posts: {{ post.user.post_count }}
Registered since: {{ post.user.date_joined|format_date('%b %d %Y') }}
Karma: 124
{{ post.content }} {% if post.user.signature %}
{{ post.user.signature }} {% endif %}
PM | Website {% if current_user.is_authenticated() and current_user.id == post.user_id %} Edit | Delete | {% endif %} Quote | Report | +1
{% if current_user.is_authenticated() %}
{{ form.hidden_tag() }}
{{ form.content(rows="6", class="form-control") }}
{% endif %} {% endblock %}