{% load i18n %} {% load markup %} {% load comments %} {% if comment_list %}
{% for comment in comment_list %}
{{ comment.user }} ({{ comment.submit_date|date:"Y-m-d H:i" }}):
{{ comment.comment|markdown }}
{% endfor %}
{% else %}

{% trans "No one has posted any comments yet. Perhaps you would like to be the first?" %}

{% endif %}