bgneal@86: {% extends 'base.html' %} bgneal@310: {% load url from future %} bgneal@127: {% load forum_tags %} bgneal@86: {% block title %}Forums: {{ topic.name }}{% endblock %} bgneal@358: {% block custom_js %} bgneal@358: {{ form.media }} bgneal@358: {% include "forums/jump_box.js" %} bgneal@358: {% endblock %} bgneal@86: {% block content %} bgneal@283: {% forum_navigation topic %} bgneal@86: bgneal@86:
bgneal@104: {% if topic.sticky %} bgneal@312: Sticky bgneal@104: {% endif %} bgneal@102: {% if topic.locked %} bgneal@312: Lock 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@310: • 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@358: {% include 'forums/jump_box.html' %} bgneal@109: {% if can_moderate %} bgneal@109:
bgneal@310:
{% csrf_token %} bgneal@109: bgneal@109:
bgneal@310:
{% csrf_token %} bgneal@109: bgneal@109:
bgneal@310:
{% csrf_token %} bgneal@109: bgneal@109:
bgneal@312: Move Topic bgneal@310: Move this topic bgneal@312: Split Topic bgneal@310: Split this topic bgneal@109:
bgneal@109: {% endif %} bgneal@90: bgneal@104: {% if last_page and can_reply %} bgneal@87: bgneal@285: {% show_form "Reply to Topic" form "Submit Reply" 1 %} bgneal@86: {% endif %} bgneal@181: bgneal@181: {% if user.is_authenticated %} bgneal@310:
{% csrf_token %} bgneal@232:
bgneal@232: Favorite Options bgneal@232:

bgneal@232: {% if is_favorite %} bgneal@312: Favorite bgneal@232: You currently have saved this topic in your list of favorites. bgneal@232: bgneal@232: {% else %} bgneal@312: Favorite bgneal@232: Would you like to save this topic to your favorites list? bgneal@232: bgneal@232: {% endif %} bgneal@232:

bgneal@232:

bgneal@232: To manage all your forum topic favorites, please visit your bgneal@310: favorites page. bgneal@232:

bgneal@232:
bgneal@232:
bgneal@232: bgneal@310:
{% csrf_token %} bgneal@181:
bgneal@181: Subscription Options bgneal@181:

bgneal@181: {% if is_subscribed %} bgneal@312: Email bgneal@181: You are currently subscribed to this topic and will receive an email when new replies are posted. bgneal@181: bgneal@181: {% else %} bgneal@312: Email bgneal@181: Would you like to receive an email when someone replies to this topic? bgneal@181: bgneal@181: {% endif %} bgneal@181:

bgneal@181:

bgneal@181: To manage all your forum topic subscriptions, please visit your bgneal@310: subscriptions page. bgneal@181:

bgneal@181:
bgneal@181:
bgneal@181: {% endif %} bgneal@343: Top bgneal@86:
bgneal@86: {% endblock %}