{% extends "core/article_page.html" %} {% load wagtailcore_tags wagtailimages_tags comments mptt_tags molo_commenting_tags i18n %} {% block content %} {% get_comments_content_object for form as self %} {% trans "Back to article" %}
{% include "comments/comment.html" with node=comment do_not_link_replies=True %}
{% if page == 1 %}

{% trans "Recent replies" %}

{% else %}

{% trans "Earlier replies" %}

{% endif %} {% for node in replies reversed %} {% include "comments/comment.html" %} {% endfor %}
{% if request.user.is_authenticated %} {% include "comments/form.html" with node=comment %} {% else %}
{% trans "Please " %} {% trans " to leave a comment." %}
{% endif %}
{% endblock %}