Please correct the errors in the form.
{% endif %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% for field in form %}
{% if suggestion_mode == 'update' and citation in field.id_for_label %}
{% else %}
{% if field.errors %}
{% render_field field class="form-control is-invalid" placeholder=field.label %}
{% else %}
{% render_field field class="form-control " placeholder=field.label %}
{% endif %}
{% endif %}
{% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}