{% load i18n %} {% extends "pages/body.html" %} {% block title %}{% trans "Topics from" %} "{{ forum_name }}"{% endblock %} {% block header %}{% trans "Topics from" %} "{{ forum_name }}"{% endblock %} {% block crumb %}{% trans "Home" %} > {% trans "Forum Index" %} > {{ forum_name }}{% endblock %} {% block leftmenu %}{% endblock %} {% block content %}
{% if perms.is_staff %}{% endif %} {% for topic in object_list %} {% if perms.is_staff %} {% endif %} {% endfor %}
{% trans "Topic" %} {% trans "Author" %} {% trans "Posts" %} {% trans "Last Post" %}{% trans "Admin" %}
{% 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 }} {% trans "Delete Topic" %} | {% if topic.is_locked %} {% trans "Unlock Topic" %} {% else %} {% trans "Lock Topic" %} {% endif %} {% ifnotequal topic.is_locked 1 %} | {% trans "Move Topic" %} {% endifnotequal %}

{% ifnotequal pages 0 %} {% ifnotequal pages 1 %} {% trans "Latest Topics" %} | {% endifnotequal %} {% endifnotequal %} {% if has_previous %} {% trans "Newer Topics" %} {% endif %} {% if has_next %} {% trans "Older Topics" %} {% endif %} {% ifnotequal pages 0 %} {% ifnotequal pages 1 %} | {% trans "Oldest Topics" %} {% endifnotequal %} {% endifnotequal %}
{% if perms.add_topic %}

{% trans "Add New Topic" %}

{% endif %}

{% if perms.add_topic %} - {% trans "You can post new Topics" %}
{% else %} - {% trans "You can't post new Topics" %}
{% endif %} {% if perms.add_post %} - {% trans "You can post new Posts" %}
{% else %} - {% trans "You can't post new Posts" %}
{% endif %} {% if perms.is_staff %} - {% trans "You can moderate this Topics" %}
{% else %} - {% trans "You can't moderate this Topics" %}
{% endif %}

{% endblock %}