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 | |
Rushabh Mehta | b33693d | 2013-03-11 17:57:57 +0530 | [diff] [blame] | 6 | <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 Doshi | 8c7e76b | 2012-07-11 18:40:57 +0530 | [diff] [blame] | 15 | </div> |
Rushabh Mehta | b33693d | 2013-03-11 17:57:57 +0530 | [diff] [blame] | 16 | {% endfor %} |
| 17 | </div> |