{% extends "core/article_page.html" %} {% load molo_commenting_tags wagtailcore_tags %} {% block content %} {% get_comments_content_object for form as self %}

{% trans "Comments" %}

{% if messages %}
    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% if request.user.is_authenticated %}
{% csrf_token %}
{% if form.errors %}

{% trans "Please correct the error below" %}

{% endif %} {{ form.comment }} {% if form.comment.errors %}{{ form.comment.errors }}{% endif %}
{{ form.object_pk }} {{ form.content_type }} {{ form.timestamp }} {{ form.security_hash }} {% if comment.id %} {% endif %}
{% else %} {% endif %}
{% endblock %}