{% load comments mptt_tags molo_commenting_tags %} {% if self.is_commenting_enabled %}
{% if self.allow_commenting %} {% get_comment_count for self as comment_count %} {% if comment_count > 0 %}
{{comment_count}} {% blocktrans count comment_count=comment_count %}comment{% plural %}comments{% endblocktrans %}
{% endif %}
{% 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 limit 2 child_limit 2 %} {% for node in comment_list %} {% recursetree node %} {% include "comments/comment.html" with truncate_comment=True %} {{ children }} {% endrecursetree %} {% endfor %} {% if comment_count > 2 %} {% endif %}
{% endif %}