{% load custom_filters %} {% for comment in comments %}
{{ comment.user.get_avatar_letter }}
{{ comment.user.username }} {{ comment.created_at|date:"d.m.Y H:i" }}
{{ comment.content|safe|linebreaks }}
{% if user.is_authenticated and comment.nesting_level < 3 %} {% endif %}
{% if user.is_authenticated and comment.nesting_level < 3 %} {% endif %} {% if comment.replies.all %}
{% include 'includes/comments.html' with comments=comment.replies.all %}
{% endif %}
{% empty %}

Комментариев пока нет. Будьте первым!

{% endfor %}