{% if request.user.is_authenticated() %}

Add Comment

{% include "partials/packages/comment_form.html" %}
{% endif %} {% if pinned_comments.count() %}

{{ "Pinned Comments" | tr }}

{% for comment in pinned_comments.all() %} {% include "partials/packages/comment.html" %} {% endfor %}
{% endif %} {% if comments.count() %}

{{ "Latest Comments" | tr }}

{% for comment in comments.all() %} {% include "partials/packages/comment.html" %} {% endfor %}
{% endif %}