annotate gpp/templates/comments/comment.html @ 481:9f888dbe61ce
Fixing #230; add a scrollbar to the PM popup dialog if necessary. This wasn't as easy as I thought. Had to wrap the PM text in a div with its styling (max-height and overflow). If I then resized the dialog, I'd get two scrollbars. So for now, made the dialog non-resizable.
author |
Brian Neal <bgneal@gmail.com> |
date |
Fri, 07 Oct 2011 02:11:33 +0000 |
parents |
88b2b9cb8c1f |
children |
3c48a555298d |
rev |
line source |
bgneal@310
|
1 {% load url from future %}
|
gremmie@1
|
2 {% load avatar_tags %}
|
bgneal@14
|
3 <div class="comment" id="c{{ comment.id }}">
|
bgneal@154
|
4 <div class="comment-list">{{ forloop.counter }}.</div>
|
gremmie@1
|
5 <div class="comment-avatar">
|
bgneal@310
|
6 <a href="{% url 'bio-view_profile' username=comment.user.username%}">{% avatar comment.user %}</a>
|
gremmie@1
|
7 </div>
|
gremmie@1
|
8 {% if comment.is_removed %}
|
bgneal@14
|
9 <div class="comment-text-removed"><p><em>This comment has been removed.</em></p></div>
|
gremmie@1
|
10 {% else %}
|
gremmie@1
|
11 <div class="comment-text">{{ comment.html|safe }}</div>
|
gremmie@1
|
12 {% endif %}
|
gremmie@1
|
13 <div class="comment-details">
|
bgneal@310
|
14 <a href="{% url 'bio-view_profile' username=comment.user.username%}"
|
gremmie@1
|
15 title="View profile for {{ comment.user.username }}">{{ comment.user.username }}</a> |
|
gremmie@1
|
16 {{ comment.creation_date|date:"d-M-Y H:i:s" }}
|
gremmie@1
|
17 {% if not comment.is_removed %}
|
gremmie@1
|
18 | <a href="#" class="comment-flag" id="fc-{{ comment.id }}"
|
gremmie@1
|
19 title="Flag this comment as spam, abuse, or a violation of site rules.">
|
bgneal@312
|
20 <img src="{{ STATIC_URL }}icons/flag_red.png" alt="Flag" /></a>
|
gremmie@1
|
21 {% endif %}
|
gremmie@1
|
22 </div>
|
gremmie@1
|
23 </div>
|