{% load i18n %} {% load comments %} {% if comment_object %}
{% get_comment_list for comment_object as comment_list %}
{% for comment in comment_list reversed %}
{{ comment.modified|date:"F d, Y, H:i:s a" }} 
{% ifequal comment.comment_type 'decline_preview' %}Preview Decline:
{{ comment.comment }}
{% else %}
{{ comment.comment }}
{% endifequal %}
{% endfor %}
{% endif %}