{% set page_title = forum.title ~ " - Forum" %} {% set active_forum_nav=True %} {% extends "layout.html" %} {% block content %} {% from 'macros.html' import render_pagination %}
{{ render_pagination(topics, url_for('forum.view_forum', forum_id=forum.id)) }}
{% if current_user.is_authenticated() %}
New Topic
{% endif %} {% for topic in topics.items %} {% else %} {% endfor %}
{{ forum.title }}
Thread Posts Views Last Post
{{ topic.title }}
by {{ topic.user.username }}
{{ topic.post_count }} {{ topic.views }} {{ topic.last_post.date_created|time_since }}
by {{ topic.last_post.user.username }}
No Topics so far.
{% endblock %}