{% extends "forum/base.html" %} {% load markup %} {% load i18n %} {% block title %}{% trans "Forum" %} :: {{ forum.title }}{% endblock %} {% block breadcrumbs %}{% trans "Forum" %} / {{ forum.title }}{% endblock %} {% block content %}

{% trans "View Threads" %}

{% if thread_list %} {% if is_paginated %} « {% for page_number in paginator.page_range %}{% ifequal page_number page %}{{ page_number }}{% else %}{{ page_number }}{% endifequal %} {% endfor %} » {% endif %} {% for t in thread_list %} {% endfor %}
{% trans "Thread" %} {% trans "Posts" %} {% trans "Views" %} {% trans "Last Post" %}
{% if t.sticky %}{% trans "Sticky" %} {% endif %}{{ t.title }}{% if t.closed %} ({% trans "Closed" %}){% endif %} {{ t.posts }} {{ t.views }} {{ t.thread_latest_post.time|timesince }} {% trans "ago by" %} {{ t.thread_latest_post.author }} ({% trans "view" %})
{% if is_paginated %} « {% for page_number in paginator.page_range %}{% ifequal page_number page %}{{ page_number }}{% else %}{{ page_number }}{% endifequal %} {% endfor %} » {% endif %} {% endif %}
{% include "forum/form_thread_new.html" %} {% endblock %} {% block aside-info %}
{% trans "Choose the thread you would like to read or contribute to. Or simply create a new one if the existing threads do not fit." %}
{% endblock %}