comparison 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
comparison
equal deleted inserted replaced
193:fe51ec4eccc1 194:50ba20441122
1 Override
2 <dl id="comments">
3 {% for comment in comment_list %}
4 <dt id="c{{ comment.id }}">
5 {{ comment.submit_date }} - {{ comment.name }}
6 </dt>
7 <dt> {{ comment.user_name }} </dt>
8 <dt> {{ comment.ip_address }} </dt>
9 <dt> {{ comment.user_email }} </dt>
10 <dd>
11 <p>{{ comment.user_url }}</p>
12 </dd>
13 {% endfor %}
14 </dl>