{# this template generates comment rows for a blog it is to be included in the blog/blog.html template #}
{% for comment in comment_list %}
{{ comment.comment_by_fullname }} / {{ comment.comment_date }}:

{{ comment.comment }}


{% endfor %}