summaryrefslogtreecommitdiff
path: root/app/django_comments/templates/comments/list.html
blob: 1246adfda9af01606a1dde7e7cda8809520ffcd2 (plain)
1
2
3
4
5
6
7
8
9
10
<dl id="comments">
  {% for comment in comment_list %}
    <dt id="c{{ comment.id }}">
      {{ comment.submit_date }} - {{ comment.name }}
    </dt>
    <dd>
      <p>{{ comment.comment }}</p>
    </dd>
  {% endfor %}
</dl>