{% extends "forum/base.html" %} {% load humanize %} {% load forum_tags %} {% block title %}{{ forum.name }}{% endblock %} {% block section_title %}{{ forum.name }}{% endblock %} {% block forum_content %} Forum Home

{{ forum.name }}


New Topic
{% for topic in topics %}
{{ topic.title }}
by {{ topic.user.username }}, {{ topic.created|naturaltime }}
{{ topic.reply_count }}
{% if user|is_moderator_of:forum %} {% elif user.is_superuser %} {% endif %}
{% empty %}

Sorry, no topics in here yet.

{% endfor %}
{% if topics.has_other_pages %}
{% endif %}
{% endblock %}