• Sign in

Administrator / django-contrib-comments · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • django-contrib-comments
  • django_comments
  • templates
  • comments
  • list.html
  • Initial dump of code from Django. ...
    a457ae4b
    Imported from django/django@6a91b6.
    Jacob Kaplan-Moss authored
    2013-03-09 09:13:14 -0600  
    Browse Files »
list.html 229 Bytes
Raw Blame History Permalink
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>