{% load i18n %}
{% if comment_list %}
{% for comment in comment_list %}
{% for cr in comment.commentrelation_set.all %} {% endfor %}
{{ comment.comment|linebreaksbr }}
{% endfor %} {% if comment_list|length < num_total_comments %}
{% trans "All Comments" %} ({{ num_total_comments }})
{% endif %}
{% else %} {% trans "No comments yet." %} {% endif %}