{% load content crispy_forms_tags rules utils core %}

{% if content.public %}Kommentare{% else %}Antworten{% endif %}
{% include_fragments 'content-comments-actions' %}

    {% for comment in content.comments.all %}
  1. {% include 'entities/_gestalt_avatar.html' with gestalt=comment.author link=True %}
    {% markdown comment.text heading_baselevel=3 %}
  2. {% endfor %}
{% has_perm 'content.create_comment' user content as can_create_comment %} {% if can_create_comment %} {% crispy comment_form %} {% else %} Kommentieren {% endif %} {% include_features '_content_comment_actions.html' %}