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

{% if threads %} {% for t in threads %} {% endfor %}
Thread Posts Views Last Post
{% if t.sticky %}Sticky {% endif %}{{ t.title }}{% if t.closed %} (Closed){% endif %} {% if user.is_authenticated %}[ Subscribe Bookmark]{% endif %} {{ t.posts }} {{ t.views }} {{ t.thread_latest_post.time|timesince }} ago by {{ t.thread_latest_post.author }} (view)
{% endif %} {% if posting %}

Preview

Thread: {{thread.title|escape}}

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

 

 

Create a new Thread

{% 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?)
{% endif %}
{{ form.title|safe }}
{{ form.body|safe }}
You may use Markdown syntax here, but raw HTML will be removed.
{% endblock %} {% load safe_markup %} {% load markup %} {% block content-related %}
You are in Forum {{ forum.title }}. Choose the thread thread you would like to read or contribute to. Or simply create a new one if the existing threads do not fit.
{% if latest_posts %}

Recent forum posts

{% else %}

No forum yet.

{% endif %}
{% if blog_entries %}

Latest Thoughts

{% endif %}

RSS Feed RSS Feed - Blog

RSS Feed RSS Feed - Forum "{{ forum.title }}"

{% endblock %}