bgneal@86: {% extends 'base.html' %}
bgneal@127: {% load forum_tags %}
bgneal@86: {% block title %}Forums: {{ topic.name }}{% endblock %}
bgneal@107: {% block custom_js %}{{ form.media }}{% endblock %}
bgneal@86: {% block content %}
bgneal@86:
bgneal@104: {% if topic.sticky %}
bgneal@104:
bgneal@104: {% endif %}
bgneal@102: {% if topic.locked %}
bgneal@102:
bgneal@104: {% endif %}
bgneal@104: {% if can_reply %}
bgneal@104: {% if topic.locked or topic.sticky %}•{% endif %}
bgneal@87: {% if last_page %}
bgneal@102:
New Reply
bgneal@87: {% else %}
bgneal@102:
New Reply
bgneal@87: {% endif %}
bgneal@102: {% endif %}
bgneal@102: •
New Topic
bgneal@97: {{ page_nav }}
bgneal@86:
bgneal@89:
bgneal@90: {% for post in page.object_list %}
bgneal@89: {% include 'forums/display_post.html' %}
bgneal@86: {% endfor %}
bgneal@86:
bgneal@97: {{ page_nav }}
bgneal@109: {% if can_moderate %}
bgneal@109:
bgneal@109: {% endif %}
bgneal@90:
bgneal@104: {% if last_page and can_reply %}
bgneal@87:
bgneal@127: {% show_form "Reply to Topic" form "Submit Reply" 1 MEDIA_URL %}
bgneal@86: {% endif %}
bgneal@181:
bgneal@181: {% if user.is_authenticated %}
bgneal@181:
bgneal@181: {% endif %}
bgneal@86:
bgneal@86: {% endblock %}