{% extends "community/forum_base.html" %} {% load paginator %} {% load markup %} {% block title %}{{ thread.title }} ({{ forum.title }}){% endblock %} {% block billboard %}Thread: {{ thread.title }} ({{ forum.title }}){% endblock %} {% block pagetitle %}{{ forum.title }} » {{ thread.title }}{% endblock %} {% block breadcrumbs %}» {{ forum.title }} » {{ thread.title }} ({{ thread.object_list }} post{{ thread.object_list|pluralize }}){% endblock %} {% block content %}

{% paginator 5 %}
{% for post in object_list %}
{{ post.author }} ( on {{ post.time|date:"F j, Y, H:i:s" }} )
{{ post.body|markdown:"safe" }}
{% endfor %}
{% paginator 5 %} {% if posting %}

Preview

{{ posting.author }} ( on {{ posting.time|date:"F j, Y, H:i:s" }} )
{{ posting.body|markdown:"safe" }}
{% endif %} {% if not has_next %}

Post a Reply

{% if thread.closed %}

Sorry, this thread is closed. No further replies are permitted.

{% else %}
{% if not user.is_authenticated %}

Please login to create a thread.

{% if form.username.errors %} {{ form.username.errors|join:", " }} {% endif %} {{ form.username|safe }}
{% if form.password.errors %} {{ form.password.errors|join:", " }} {% endif %} {{ form.password|safe }} ( Forgotten your password?)
{{ form.body|safe }}
You may use Markdown syntax here, but raw HTML will be removed.
{% endif %} {% endif %} {% endblock %} {% block content-related %}
You are in Forum {{ forum.title }} looking at thread {{ thread.title }}.

RSS Feed RSS Feed - Thread "{{ thread.title }}"

{% endblock %}