{% 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 %}
| Thread | Posts | Views | Last Post |
|---|---|---|---|
| {% if t.sticky %}Sticky {% endif %}{{ t.title }}{% if t.closed %} (Closed){% endif %}
{% if user.is_authenticated %}[ |
{{ t.posts }} | {{ t.views }} | {{ t.thread_latest_post.time|timesince }} ago by {{ t.thread_latest_post.author }} (view) |
Thread: {{thread.title|escape}}
No forum yet.
{% endif %}