Anand Doshi | 8c7e76b | 2012-07-11 18:40:57 +0530 | [diff] [blame] | 1 | {# |
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 %} |