{% load i18n %} {% load comments %} {% if lfc_context %} {% get_comment_list for lfc_context as comment_list %} {% if comment_list %}

{% trans 'Comments' %}

{% for comment in comment_list %}
{{ forloop.counter }}. {% if comment.url %} {{ comment.name }} {% else %} {{ comment.name }} {% endif %} {{ comment.submit_date|date:"d.m.Y - H:i" }}
{{ comment.comment }}
{% endfor %} {% endif %} {% if lfc_context.are_comments_allowed %}

{% trans 'Leave a comment' %}

{% render_comment_form for lfc_context %} {% endif %} {% endif %}