comparison gpp/templates/forums/display_post.html @ 108:80ab249d1adc

Forums: quoting existing posts.
author Brian Neal <bgneal@gmail.com>
date Sat, 26 Sep 2009 03:55:50 +0000
parents e94398f5e027
children d97ceb95ce02
comparison
equal deleted inserted replaced
107:e94398f5e027 108:80ab249d1adc
20 {% ifnotequal post.creation_date post.update_date %} 20 {% ifnotequal post.creation_date post.update_date %}
21 <p class="small quiet">Last edited: {{ post.update_date|date:"M d, Y H:i:s" }}</p> 21 <p class="small quiet">Last edited: {{ post.update_date|date:"M d, Y H:i:s" }}</p>
22 {% endifnotequal %} 22 {% endifnotequal %}
23 </div> 23 </div>
24 <div class="forum-post-info-tools"> 24 <div class="forum-post-info-tools">
25 <a href=""><img src="{{ MEDIA_URL }}icons/comment.png" alt="Reply with quote" title="Reply with quote" /></a> 25 {% if can_reply %}
26 <a href="{% url forums-new_post topic_id=post.topic.id %}?quote={{ post.id }}"><img src="{{ MEDIA_URL }}icons/comment.png" alt="Reply with quote" title="Reply with quote" /></a>
27 {% endif %}
26 {% post_edit_button post user can_moderate MEDIA_URL %} 28 {% post_edit_button post user can_moderate MEDIA_URL %}
27 <a href="#" class="post-flag" id="fp-{{ post.id }}" 29 <a href="#" class="post-flag" id="fp-{{ post.id }}"
28 title="Flag this post as spam, abuse, or a violation of site rules."> 30 title="Flag this post as spam, abuse, or a violation of site rules.">
29 <img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag" /></a> 31 <img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag" /></a>
30 {% if can_moderate %} 32 {% if can_moderate %}