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