15 lines
697 B
HTML
15 lines
697 B
HTML
{% load i18n django_markdown %}
|
|
<table id="comments" class="layout">
|
|
{% for comment in comment_list %}
|
|
<tr id="c{{ comment.id }}">
|
|
<td class="avatar">
|
|
{% if comment.user.get_profile.thumbnail %}<img src="{{comment.user.get_profile.thumbnail.url}}" alt=""/>{% else %}<img src="{{STATIC_URL}}img/unknown_thumbnail.png" alt=""/>{% endif %}
|
|
</td>
|
|
<td class="userinfo">
|
|
<a href="{{ comment.user.get_profile.get_absolute_url }}" class="user">{{comment.user}}</a>
|
|
<div class="submit_date"><time time="{{comment.submit_date|time:'c'}}">{{comment.submit_date|timesince}}</time></div>
|
|
</td>
|
|
<td class="content">{{comment.comment|markdown_safe}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table> |