PageRenderTime 82ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): BSD-3-Clause
  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>