{% extends "base.html" %} {% load i18n forum %} {% block title %}{{ forum }}{% endblock %} {% block content %} {% render_parent_list forum.get_parent_list %}

{{ forum }}

{% if forum.has_children %}

Sub-forums

{% render_forum_list forum.children.all %} {% endif %}

{% trans 'Threads' %} {% if not forum.is_category and can_create %}(create){% endif %}

{% for thread in thread_list %} {% endfor %}
Thread Last modified Posts
{{ thread }} {{ thread.last_post_date|date:"h:i A" }} {{ thread.post_count }}
{% endblock %}