{% set page_title = _("Topic Tracker") %} {% set active_forum_nav=True %} {% extends theme("layout.html") %} {% from theme('macros.html') import render_pagination %} {% block content %}
{% trans %}Topic Tracker{% endtrans %} | ||||
---|---|---|---|---|
{% trans %}Topic{% endtrans %} | {% trans %}Posts{% endtrans %} | {% trans %}Views{% endtrans %} | {% trans %}Last Post{% endtrans %} | |
{% if topic|topic_is_unread(topicread, current_user) %} {% else %} {% endif %} |
{{ topic.title }}
{% trans %}by{% endtrans %} {% if topic.user_id %} {{ topic.user.username }} {% else %} {{ topic.username }} {% endif %} |
{{ topic.post_count }} | {{ topic.views }} |
{{ topic.last_post.date_created|time_since }} {% trans %}by{% endtrans %} {% if topic.last_post.user_id %} {{ topic.last_post.user.username }} {% else %} {{ topic.last_post.username }} {% endif %} |
{% trans %}No topics.{% endtrans %} |