comparison gpp/templates/comments/comment.html @ 154:82deb8cc59e9

Fix #26; IE8 has problems displaying lists of divs.
author Brian Neal <bgneal@gmail.com>
date Sat, 19 Dec 2009 20:12:29 +0000
parents 7b6540b185d9
children 8c1832b9d815
comparison
equal deleted inserted replaced
153:13d052fbe4f1 154:82deb8cc59e9
1 {% load avatar_tags %} 1 {% load avatar_tags %}
2 {% load markup %} 2 {% load markup %}
3 {% load smiley_tags %} 3 {% load smiley_tags %}
4 <li>
5 <div class="comment" id="c{{ comment.id }}"> 4 <div class="comment" id="c{{ comment.id }}">
5 <div class="comment-list">{{ forloop.counter }}.</div>
6 <div class="comment-avatar"> 6 <div class="comment-avatar">
7 <a href="{% url bio-view_profile username=comment.user.username%}">{% avatar comment.user %}</a> 7 <a href="{% url bio-view_profile username=comment.user.username%}">{% avatar comment.user %}</a>
8 </div> 8 </div>
9 {% if comment.is_removed %} 9 {% if comment.is_removed %}
10 <div class="comment-text-removed"><p><em>This comment has been removed.</em></p></div> 10 <div class="comment-text-removed"><p><em>This comment has been removed.</em></p></div>
20 title="Flag this comment as spam, abuse, or a violation of site rules."> 20 title="Flag this comment as spam, abuse, or a violation of site rules.">
21 <img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag" /></a> 21 <img src="{{ MEDIA_URL }}icons/flag_red.png" alt="Flag" /></a>
22 {% endif %} 22 {% endif %}
23 </div> 23 </div>
24 </div> 24 </div>
25 </li>