annotate gpp/templates/forums/topic.html @ 107:e94398f5e027

Forums: implemented post delete feature.
author Brian Neal <bgneal@gmail.com>
date Tue, 22 Sep 2009 03:36:39 +0000
parents 59688577a8f1
children 07be3e39e639
rev   line source
bgneal@86 1 {% extends 'base.html' %}
bgneal@86 2 {% block title %}Forums: {{ topic.name }}{% endblock %}
bgneal@107 3 {% block custom_js %}{{ form.media }}{% endblock %}
bgneal@86 4 {% block content %}
bgneal@86 5 <h2>Forums: {{ topic.name }}</h2>
bgneal@86 6
bgneal@86 7 <h3>
bgneal@86 8 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
bgneal@86 9 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> &raquo;
bgneal@86 10 <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a>
bgneal@86 11 </h3>
bgneal@86 12
bgneal@86 13 <div class="forum-block">
bgneal@104 14 {% if topic.sticky %}
bgneal@104 15 <img src="{{ MEDIA_URL }}/icons/asterisk_orange.png" alt="Sticky" title="Sticky" />
bgneal@104 16 {% endif %}
bgneal@102 17 {% if topic.locked %}
bgneal@102 18 <img src="{{ MEDIA_URL }}/icons/lock.png" alt="Lock" title="This topic is locked" />
bgneal@104 19 {% endif %}
bgneal@104 20 {% if can_reply %}
bgneal@104 21 {% if topic.locked or topic.sticky %}&bull;{% endif %}
bgneal@87 22 {% if last_page %}
bgneal@102 23 <a href="#forum-reply-form">New Reply</a>
bgneal@87 24 {% else %}
bgneal@102 25 <a href="./?page={{ page.paginator.num_pages }}#forum-reply-form">New Reply</a>
bgneal@87 26 {% endif %}
bgneal@102 27 {% endif %}
bgneal@102 28 &bull; <a href="{% url forums-new_topic slug=forum.slug %}">New Topic</a>
bgneal@97 29 {{ page_nav }}
bgneal@86 30
bgneal@89 31 <table class="forum-topic" id="forum-topic">
bgneal@90 32 {% for post in page.object_list %}
bgneal@89 33 {% include 'forums/display_post.html' %}
bgneal@86 34 {% endfor %}
bgneal@86 35 </table>
bgneal@97 36 {{ page_nav }}
bgneal@90 37
bgneal@104 38 {% if last_page and can_reply %}
bgneal@87 39 <a name="forum-reply-form"></a>
bgneal@89 40 <form action="" method="post" id="forums-quick-reply">
bgneal@86 41 <fieldset>
bgneal@87 42 <legend>Reply to &quot;{{ topic.name }}&quot;</legend>
bgneal@86 43 {{ form.as_p }}
bgneal@89 44 <input type="submit" value="Submit Reply" id="forums-reply-post" />
bgneal@86 45 </fieldset>
bgneal@86 46 </form>
bgneal@86 47 {% endif %}
bgneal@86 48 </div>
bgneal@86 49 {% endblock %}