blob: 8ed411de3613dba16d0fb621af822e44da718a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% if comments %}
<table class="comments">
{% for c in comments %}
<tr><td class="comment_info">
<span class="comment_user">{{ c.user }}</span>
<span class="comment_date">{{ c.submit_date }}</span>
</td><td class="comment_content">
<span class="comment_headline">{{ c.headline|escape|wordwrap:80 }}</span>
<span class="comment_content">{{ c.content|escape|wordwrap:80 }}</span>
</td</tr>
{% endfor %}
</table>
{% else %}
<h3>No comments yet!</h3>
{% endif %}
|