{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Forums" %} - {{block.super}} {% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% for topic in forum.topics.all %} {% empty %} {% if forum.is_closed %} {% else %} {% endif %} {% endfor %}
{% trans "Topics" %} {% trans "Last Poster" %} {% trans "Replies" %} {% trans "Views" %}
{{topic.name}} {{topic.last_post.user.username}} {{topic.count_posts}} 0
{% trans "No topics in this forum, only admins can create and post here." %}
{% trans "No topics in this forum, create one :)" %}
{% if not forum.is_closed or user.is_staff %}

{% trans "Create topic" %}

{% endif %} {% endblock %}