annotate gpp/templates/comments/comment.html @ 215:8c1832b9d815
Implement #84; additional checks on spammers; implement stranger status.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sat, 29 May 2010 04:51:28 +0000 |
parents |
82deb8cc59e9 |
children |
daa2916f5b34 |
rev |
line source |
gremmie@1
|
1 {% load avatar_tags %}
|
bgneal@14
|
2 <div class="comment" id="c{{ comment.id }}">
|
bgneal@154
|
3 <div class="comment-list">{{ forloop.counter }}.</div>
|
gremmie@1
|
4 <div class="comment-avatar">
|
gremmie@1
|
5 <a href="{% url bio-view_profile username=comment.user.username%}">{% avatar comment.user %}</a>
|
gremmie@1
|
6 </div>
|
gremmie@1
|
7 {% if comment.is_removed %}
|
bgneal@14
|
8 <div class="comment-text-removed"><p><em>This comment has been removed.</em></p></div>
|
gremmie@1
|
9 {% else %}
|
gremmie@1
|
10 <div class="comment-text">{{ comment.html|safe }}</div>
|
gremmie@1
|
11 {% endif %}
|
gremmie@1
|
12 <div class="comment-details">
|
gremmie@1
|
13 <a href="{% url bio-view_profile username=comment.user.username%}"
|
gremmie@1
|
14 title="View profile for {{ comment.user.username }}">{{ comment.user.username }}</a> |
|
gremmie@1
|
15 {{ comment.creation_date|date:"d-M-Y H:i:s" }}
|
gremmie@1
|
16 {% if not comment.is_removed %}
|
gremmie@1
|
17 | <a href="#" class="comment-flag" id="fc-{{ comment.id }}"
|
gremmie@1
|
18 title="Flag this comment as spam, abuse, or a violation of site rules.">
|
gremmie@1
|
19 <img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag" /></a>
|
gremmie@1
|
20 {% endif %}
|
gremmie@1
|
21 </div>
|
gremmie@1
|
22 </div>
|