Mercurial > public > sg101
annotate gpp/templates/forums/topic.html @ 104:59688577a8f1
Forums: display of sticky status. Moderators/superusers see IP address of post. Added a can_reply flag to the template and have view compute it.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 17 Sep 2009 01:44:51 +0000 |
parents | e67c4dd98db5 |
children | e94398f5e027 |
rev | line source |
---|---|
bgneal@86 | 1 {% extends 'base.html' %} |
bgneal@86 | 2 {% block title %}Forums: {{ topic.name }}{% endblock %} |
bgneal@89 | 3 {% block custom_js %}{% if last_page %}{{ form.media }}{% endif %}{% 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> » |
bgneal@86 | 9 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> » |
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 %}•{% 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 • <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 "{{ topic.name }}"</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 %} |