blob: 27baaad54db89dc99ee07730e6af6ffaa5eea573 [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
Rushabh Mehtab33693d2013-03-11 17:57:57 +05306<div itemscope itemtype="http://schema.org/UserComments">
7 {% for comment in comment_list %}
8 <div class="comment-row">
9 <div class="comment-title">
10 <span itemprop="name" class="author">{{ comment.comment_by_fullname }}</span> /
11 <span itemprop="commentTime">{{ comment.comment_date }}</span>:
12 </div>
13 <p class="comment-content" itemprop="commentText">{{ comment.comment }}</p>
14 <hr>
Anand Doshi8c7e76b2012-07-11 18:40:57 +053015 </div>
Rushabh Mehtab33693d2013-03-11 17:57:57 +053016 {% endfor %}
17</div>