{% load blog_extras %} {% load static %} {% for comment in comments %}
{{ comment.author_name }} #{{ comment.id }} {{ comment.time_create|date:"d.m.Y H:i" }} {% if not comment.is_moderated %} ⏳ На модерации {% endif %}
{{ comment.content|linebreaks }}
{% if user.is_authenticated %} {% endif %} {% with replies=comment.replies.all %} {% if replies %}
{% show_comments replies depth=forloop.parentloop.counter0|add:depth %}
{% endif %} {% endwith %}
{% empty %}

Комментариев пока нет.

{% endfor %}