{% if comments %}

Comments on this publication

{% for comment in comments %}
{{ comment.print_identifier|safe }} {{ comment.categories_as_ul|safe }}
{% if user.is_authenticated and user.contributor.rank > 0 and user.contributor != comment.author %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% endif %}

{{ comment.comment_text|linebreaks }}

{% for reply in author_replies %} {% if reply.in_reply_to_comment.id = comment.id %}

{{ reply.print_identifier|safe }}

{{ reply.reply_text|linebreaks }}

{% endif %} {% endfor %} {% if user.is_authenticated and user.contributor.rank > 0 %}

{% endif %} {% endfor %}
{% endif %} {% if user.is_authenticated and commentary.open_for_commenting and user.contributor.rank > 0 %}

Contribute a Comment:

{% csrf_token %} {% load crispy_forms_tags %} {% crispy form %}
{% endif %}