Files
dss/templates/views/CommentListItemView.html
U-FM-LAPTOP\fergalm 3d5eb995e1 Initial emoticon handler
2012-09-26 14:02:10 +01:00

18 lines
488 B
HTML
Executable File

{% load account_tags %}
<div class="comment-block">
<a href="">
<img class="image-avatar-small" src="<%= item.avatar_image %>" alt="">
</a>
<div class="comment-details">
<a class="comment-user" href="<%= item.user_url %>">
<%= item.user_name %>
</a>
<blockquote class="pull-right">
<p><%= item.comment %></p>
<small><%= item.date_created %></small>
</blockquote>
</div>
</div>