Mercurial > public > sg101
annotate gpp/templates/comments/comment.html @ 14:7b6540b185d9
Added get_absolute_url() for my comments. Had to add a get_absolute_url() function for downloads in the process.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 18 Apr 2009 19:14:17 +0000 |
parents | dbd703f7d63a |
children | 82deb8cc59e9 |
rev | line source |
---|---|
gremmie@1 | 1 {% load avatar_tags %} |
gremmie@1 | 2 {% load markup %} |
gremmie@1 | 3 {% load smiley_tags %} |
gremmie@1 | 4 <li> |
bgneal@14 | 5 <div class="comment" id="c{{ comment.id }}"> |
gremmie@1 | 6 <div class="comment-avatar"> |
gremmie@1 | 7 <a href="{% url bio-view_profile username=comment.user.username%}">{% avatar comment.user %}</a> |
gremmie@1 | 8 </div> |
gremmie@1 | 9 {% if comment.is_removed %} |
bgneal@14 | 10 <div class="comment-text-removed"><p><em>This comment has been removed.</em></p></div> |
gremmie@1 | 11 {% else %} |
gremmie@1 | 12 <div class="comment-text">{{ comment.html|safe }}</div> |
gremmie@1 | 13 {% endif %} |
gremmie@1 | 14 <div class="comment-details"> |
gremmie@1 | 15 <a href="{% url bio-view_profile username=comment.user.username%}" |
gremmie@1 | 16 title="View profile for {{ comment.user.username }}">{{ comment.user.username }}</a> | |
gremmie@1 | 17 {{ comment.creation_date|date:"d-M-Y H:i:s" }} |
gremmie@1 | 18 {% if not comment.is_removed %} |
gremmie@1 | 19 | <a href="#" class="comment-flag" id="fc-{{ comment.id }}" |
gremmie@1 | 20 title="Flag this comment as spam, abuse, or a violation of site rules."> |
gremmie@1 | 21 <img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag" /></a> |
gremmie@1 | 22 {% endif %} |
gremmie@1 | 23 </div> |
gremmie@1 | 24 </div> |
gremmie@1 | 25 </li> |