{% load static %}

Leave a comment

Keep it constructive. Your email will not be shown publicly.

{% if success_message %}
{{ success_message }}
{% endif %} {% if comment_form.errors %}
There were some errors:
    {% if comment_form.non_field_errors %} {% for error in comment_form.non_field_errors %}
  • {{ error }}
  • {% endfor %} {% endif %} {% for field in comment_form %} {% if field.errors %} {% for error in field.errors %}
  • {{ field.label }}: {{ error }}
  • {% endfor %} {% endif %} {% endfor %}
{% endif %}
{% csrf_token %}
{% if turnstile_site_key %}
{% endif %}