Ticket #10285: list.html

File list.html, 224 bytes (added by Kyle Fuller, 15 years ago)

django/contrib/comments/templates/comments/list.html

Line 
1<dl id="comments">
2{% for comment in comment_list %}
3 <dt id="c{{ comment.id }}">
4 {{ comment.submit_date }} - {{ comment.name }}
5 </dt>
6 <dd>
7 <p>{{ comment.comment }}</p>
8 </dd>
9{% endfor %}
10</dl>
Back to Top