{% extends "tinyforum/base.html" %} {% load i18n tinyforum staticfiles %} {% block extra-body-class %}forum{% endblock %} {% block title %}{% trans 'Forum' %} - {{ block.super }}{% endblock %} {% block main-region-content %}
{% if user.is_authenticated %} {% trans "Create new thread" %} {% else %} {% trans "Login" %} {% endif %} {% trans "Status" %}: {% trans "Active" %} {% trans "Closed" %}
{% for thread in object_list %} {% endfor %}
{% trans 'Thread' %} {% trans 'Posts' %} {% trans 'Author' %} {% trans 'Latest post' %}
{% if thread.is_pinned %}{% trans {% endif %} {% thread_star thread %} {{ thread.title }} {{ thread.post_count }} {{ thread.authored_by.profile }}
{{ thread.latest_post.authored_by.profile }}
{% include "tinyforum/pagination.html" %} {% endblock %}