blob: 1323e094d22a58f72d7c0cffff9a5e193a75c6cf [file] [log] [blame]
Anand Doshi8c7e76b2012-07-11 18:40:57 +05301{#
2 this template generates comment rows for a blog
3 it is to be included in the blog/blog.html template
4#}
5
6{% for comment in comment_list %}
7<div class="comment-row">
8 <div class="comment-title">
9 {{ comment.comment_by_fullname }} - {{ comment.comment_date }}:
10 </div>
11 <p class="comment-content">{{ comment.comment }}</p>
12 <hr>
13</div>
14{% endfor %}