Join the conversation
Add your fresh comment below
{% 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 %}
Join the conversation
Add your fresh comment below
{% if success_message %}{% 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 %}