{% load i18n %} {% extends "pages/body.html" %} {% block crumb %}{% trans "Home" %} > {% trans "Forum Index" %}{% endblock %} {% block content %}

{% trans "Forum Index" %}

{% for topic in topics %} {% endfor %}
{% trans "Topic" %} {% trans "Author" %} {% trans "Posts" %} {% trans "Last Post" %}
{% if topic.is_locked %} * {% else %} {% if topic.is_sticky %} * {% else %} {% if topic.is_global %} * {% else %} * {% endif%} {% endif%} {% endif %} {{ topic.topic_name }} {{ topic.topic_author }} {{ topic.topic_posts }} {{ topic.topic_lastpost }}
{% endblock %} {% block leftmenu %}{% if perms.is_authenticated %} {% endif %}{% endblock %}