{% load text_filters %} {% load posts %} {% load comments %} {% if comment.author_id in muted_user_ids %} {% include "comments/types/muted.html" with comment=comment replies=replies %} {% else %}
{% if replies %}
{% endif %}
Аватар {{ comment.author.full_name }} {{ comment.author.full_name }} {% if comment.author_id in user_notes %} {{ user_notes|lookup:comment.author_id|truncatechars:50 }} {% endif %} {{ comment.created_at | cool_date }} {% if comment.author == post.author %} {% include "users/widgets/hat_author.html" %} {% endif %} {% if comment.author.hat %} {% include "users/widgets/hat.html" with hat=comment.author.hat %} {% endif %}
{% if comment.metadata.badges %} {% include "badges/widgets/badges.html" with badges=comment.metadata.badges %} {% endif %} {% if me and comment.author_id != me.id and not comment.author.deleted_at %} {% endif %}
{% render_comment comment %}
  Развернуть 1 комментарий
{% if replies %}
{% for reply_reply in replies %} {% include "comments/types/reply.html" with comment=reply_reply reply_to=comment replies=None %} {% endfor %}
{% endif %}
{% endif %}