{% if request.user.is_authenticated %}
{% render_comment_form for self %}
{% else %}
{% trans "Log in to comment" %}
{% endif %}
{% else %}
{% trans "Commenting on this article is currently disabled" %}
{% endif %}
{% get_comment_count for self as comment_count %}
{% get_molo_comments for self as comment_list %}
{% for node in comment_list %}
{% include "comments/comment.html" %}
{% endfor %}
{% if comment_count > 5 %}
{% trans "Commenting on this article is currently disabled" %}
{% endif %}