regluit/frontend/templates/comments/list.html

17 lines
1004 B
HTML
Raw Normal View History

2011-12-31 03:08:04 +00:00
<div id="comments">
{% for comment in comment_list reversed %}
2013-03-10 01:25:47 +00:00
<div itemprop="comment" itemscope itemtype="http://schema.org/UserComments" class="work_supporter {% if comment.content_object.last_campaign and comment.user in comment.content_object.last_campaign.managers.all %}official{% endif %}">
<span itemprop="creator" itemscope itemtype="http://schema.org/Person">
2013-03-19 18:38:09 +00:00
<a itemprop="url" href="{% url supporter comment.user %}">
2013-03-19 02:07:19 +00:00
<span class="work_supporter_avatar">
2013-03-19 18:38:09 +00:00
<img class="user-avatar" src="{{ comment.user.profile.avatar_url }}" height="50" width="50" alt="Avatar for {{ comment.user }}" title="{{ comment.user }}" />
2013-03-19 02:07:19 +00:00
</span>
2013-03-10 01:25:47 +00:00
<span class="comment_username">{{comment.user.username }}</span>
</a>
</span>
<span itemprop="commentTime">({{ comment.submit_date }})</span> <br /><span class="comment" itemProp="commentText">{{ comment.comment|linebreaksbr }}<br /></span>
</div>
2011-12-31 03:08:04 +00:00
{% endfor %}
</div>