view comments/list.html @ 194:50ba20441122

Added comment template files and customized comments app files
author ahsanalishahid <ahsan.ali.shahid@gmail.com>
date Tue, 02 Jul 2013 02:04:09 +0500
parents
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>