{% load static %}

Post a Comment

{% if success_message %}
{{ success_message }}
{% endif %} {% if comment_form.errors %}
{% for error in comment_form.non_field_errors %}

{{ error }}

{% endfor %} {% for field in comment_form %}{% for error in field.errors %}

{{ field.label }}: {{ error }}

{% endfor %}{% endfor %}
{% endif %}
{% csrf_token %}
{% if turnstile_site_key %}
{% endif %}