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

{% if forum %}{{ forum }}{% else %}All threads{% endif%}

{% if forum.has_children %}

Sub-forums

{% render_forum_list forum.children.all %} {% endif %} {% if not forum.is_category %} {% for thread in thread_list %} {% endfor %}
Thread {% if not forum.is_category and can_create %}(create){% endif %} Last modified Posts
{{ thread }} {{ thread.last_post_date|date:"h:i A" }} {{ thread.post_count }}
{% endif %} {% endblock %}