view templates/comments/list.html @ 213:6f285552a9d0 default tip

Remove requirement to be logged in to see comments
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Thu, 16 Jan 2014 10:59:05 -0500
parents 134f726fd62c
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>