annotate gpp/templates/forums/display_post.html @ 105:08ddfd835305
Forums: Added icons for forum post moderation tools. Still need to add functionality that goes behind these.
author |
Brian Neal <bgneal@gmail.com> |
date |
Thu, 17 Sep 2009 02:20:27 +0000 |
parents |
59688577a8f1 |
children |
cb72577785df |
rev |
line source |
bgneal@89
|
1 {% load avatar_tags %}
|
bgneal@105
|
2 {% load forum_tags %}
|
bgneal@89
|
3 <tr class="forum-post {% cycle 'odd' 'even' %}">
|
bgneal@89
|
4 <td class="forum-post-author">
|
bgneal@89
|
5 <a name="p{{ post.id }}"></a>
|
bgneal@105
|
6 <a href="{% url bio-view_profile username=post.user.username %}" title="View Profile for {{ post.user.username }}">{{ post.user.username }}</a><br />
|
bgneal@105
|
7 <a href="{% url bio-view_profile username=post.user.username %}">{% avatar post.user %}</a>
|
bgneal@96
|
8 Joined: {{ post.user.date_joined|date:"M d, Y" }}<br />
|
bgneal@96
|
9 Posts: {{ post.user.get_profile.forum_post_count }}<br />
|
bgneal@96
|
10 Location: {{ post.user.get_profile.location }}<br />
|
bgneal@89
|
11 </td>
|
bgneal@89
|
12 <td class="forum-post-body">
|
bgneal@89
|
13 <div class="forum-post-info quiet">
|
bgneal@98
|
14 <a href="{{ post.get_absolute_url }}"><img src="{{ MEDIA_URL }}icons/link.png" alt="Link" title="Link to this post" /></a>
|
bgneal@89
|
15 Posted on {{ post.creation_date|date:"M d, Y H:i" }}
|
bgneal@104
|
16 {% if can_moderate %}from IP: {{ post.user_ip }}{% endif %}
|
bgneal@89
|
17 </div>
|
bgneal@89
|
18 <div class="forum-post-body">
|
bgneal@89
|
19 {{ post.html|safe }}
|
bgneal@89
|
20 </div>
|
bgneal@98
|
21 <div class="forum-post-info-tools">
|
bgneal@105
|
22 <a href=""><img src="{{ MEDIA_URL }}icons/comment.png" alt="Reply with quote" title="Reply with quote" /></a>
|
bgneal@105
|
23 {% post_edit_button post user can_moderate MEDIA_URL %}
|
bgneal@105
|
24 {% if can_moderate %}
|
bgneal@98
|
25 <a href="#" class="post-flag" id="fp-{{ post.id }}"
|
bgneal@98
|
26 title="Flag this post as spam, abuse, or a violation of site rules.">
|
bgneal@98
|
27 <img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag" /></a>
|
bgneal@105
|
28 <a href=""><img src="{{ MEDIA_URL }}icons/cross.png" alt="Delete post" title="Delete post" /></a>
|
bgneal@105
|
29 {% endif %}
|
bgneal@98
|
30 </div>
|
bgneal@89
|
31 </td>
|
bgneal@89
|
32 </tr>
|