{% extends "forum/base.html" %} {% load i18n cache %} {% block forum_content %} {% if forum.children.count %} {% for child in forum.children.all %} {% endfor %}
{% trans "Sub-forums" %}
{% trans "Forum" %} {% trans "Threads" %} {% trans "Replies" %} Last Thread
{{ child }} {{ child.thread_counter }} {{ child.reply_counter }} {{ child.last_thread|default:"-" }}
{% endif %} {% cache 30 forum_breadcrumbs %} {% include "forum/parent_tree.html" %} {% endcache %} {% for thread in object_list %} {% empty %} {% endfor %}
{% trans "Title" %} {% trans "Author" %} {% trans "Replies" %} {% trans "Views" %}
{{ thread }} {% with thread.author as thread_author %} {{ thread_author }} {% endwith %} {{ thread.replies_counter }} {{ thread.views_counter }}
{% trans "No threads found."%}---
{% include "forum/paginate.html" %} {% endblock %}