view templates/comments/list.html @ 196:134f726fd62c

Removed extrawhitespaces and moved comments template files to templates folder
author Ahsan Ali Shahid <ahsan.ali.shahid@gmail.com>
date Thu, 04 Jul 2013 15:45:50 +0500
parents comments/list.html@50ba20441122
children
line wrap: on
line source

Override
<dl id="comments">
  {% for comment in comment_list %}
    <dt id="c{{ comment.id }}">
        {{ comment.submit_date }} - {{ comment.name }}
    </dt>
    <dt> {{ comment.user_name }} </dt>
    <dt> {{ comment.ip_address }} </dt>
    <dt> {{ comment.user_email }} </dt>
    <dd>
        <p>{{ comment.user_url }}</p>
    </dd>
  {% endfor %}
</dl>