{% load i18n %} {% extends "pages/body.html" %} {% block crumb %}{% trans "Home" %} > {% trans "Forum Index" %}{% endblock %} {% block leftmenu %}{% if perms.is_authenticated %} {% endif %}{% endblock %} {% block content %} {% for cat in categories %}

{{ cat.cat_name }}

{% for forum in cat.forums %} {% endfor %}
{% trans "Forum" %} {% trans "Topics" %} {% trans "Posts" %} {% trans "Last Post" %}
* {{ forum.forum_name }}
{{ forum.forum_description }}
{% if forum.is_redirect %}-{% else %}{{ forum.forum_topics }}{% endif %} {% if forum.is_redirect %}-{% else %}{{ forum.forum_posts }}{% endif %} {% if forum.is_redirect %}-{% else %}{{ forum.forum_lastpost }}{% endif %}


{% endfor %}

{% 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 are a Moderator" %}
{% else %} - {% trans "You aren't a moderator" %}
{% endif %}

{% endblock %}