{% extends "forum/base.html" %} {% load i18n %} {% block forum_content %} {% for category in category_set %} {% for forum in category.forum_set.active %} {% empty %} {% endfor %}
{{ category }}
Forum {% trans "Threads" %} {% trans "Replies" %} {% trans "Last Thread" %}
{{ forum }} {{ forum.threads_counter }} {{ forum.replies_counter }} {% with forum.latest_thread as latest_thread %} {% if latest_thread %} {{ latest_thread }} {% else %}-{% endif %} {% endwith %}
{% trans "Click here to add a" %} {% trans "new forum" %} - - -
{% empty %}

{% trans "There are no categories registered at the moment." %}

{% if user.is_staff %}

{% trans "Please, add a category" %} {% trans "through this link" %}.

{% endif %} {% endfor %} {% endblock %}