{% load i18n %}
{{ comment.author.nick }} {{ comment.date_time }}
{{ comment.text }}
{{ comment.count_likes|default:'' }} {{ comment.count_dislikes|default:'' }} {% if comment_section.featured and comment.get_replies %} ({{ comment.get_replies.count }}) {% endif %} {#% if comment_section.anyone_can_reply or request.user == comment_section.owner.user or request.user == comment.author.user %#} {% trans 'reply' %} {% if request.user.is_authenticated %} {% else %} {% endif %} {% if not comment_section.featured and request.user == comment.author.user or request.user.is_superuser %} {% endif %}
{% if not comment_section.featured %} {% for reply in comment.get_replies %} {% with reply as comment %} {% include 'social_layer/comments/render_comment.html' %} {% endwith %} {% endfor %} {% endif %}