{% extends "forum_base.html" %} {% load i18n %} {% block title %}{{ forum.title }}{% endblock %} {% block extrahead %} {% endblock %} {% block pagetitle %}{{ forum.title }}{% endblock %} {% block breadcrumbs %} {% for title, url in forum.get_url_name %} » {{ title }} {% endfor %} ({{ forum.threads }} {% trans "thread" %}{{ forum.threads|pluralize }}, {{ forum.posts }} {% trans "post" %}{{ forum.posts|pluralize }}){% endblock %} {% block content %} {% if child_forums %} {% for subforum in child_forums %} {% with subforum.forum_latest_post as latest_post %} {% endwith %} {% endfor %}
{% trans "Sub-Forum" %} {% trans "Last Post" %}

{{ subforum.title }}
{{ subforum.threads }} {% trans "thread" %}{{ subforum.threads|pluralize }}, {{ subforum.posts }} {% trans "post" %}{{ subforum.posts|pluralize }}

{{ subforum.description }}

{% if latest_post %}{% blocktrans with post.time|timesince as time and latest_post.author as author %}{{ time }} ago by {{ author }}{% endblocktrans %} ({% trans "view" %}){% else %}{% trans "No Posts" %}{% endif %}

{% endif %} {% for t in thread_list %} {% with t.thread_latest_post as latest_post %} {% endwith %} {% endfor %}
{% trans "Thread" %} {% trans "Posts" %} {% trans "Views" %} {% trans "Last Post" %}
{% if t.sticky %}Sticky {% endif %}{{ t.title|escape }}{% if t.closed %} (Closed){% endif %} {{ t.posts }} {{ t.views }}{% blocktrans with latest_post.time|timesince as time and latest_post.author as author %}{{ time }} ago by {{ author }}{% endblocktrans %} ({% trans "view" %})
{% if is_paginated %} {% endif %}

{% trans "Create a Thread" %}

{% if user.is_authenticated %}
{% csrf_token %}

{{ user.username }}

{{ form.as_p }}

{% else %}

Please login to create a thread.

{% endif %} {% endblock %}