/django/contrib/comments/templates/comments/list.html
https://code.google.com/p/mango-py/ · HTML · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · 5bbce3d0dfa76342717536f85b558b96 MD5 · raw file
- <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>