{% load wizard_builder %}
{% load widget_tweaks %}
{% csrf_token %}
{% include 'callisto_core/delivery/errors.html' with errors=form.non_field_errors %}
{% for field in form %}
{{ field.label_tag }}
{% include 'callisto_core/delivery/errors.html' with errors=field.errors %}
{% if not field|is_multiple_choice %}
{{ field|add_aria_tags_to_field|add_class:"form-control" }}
{% else %}
{{ field|add_aria_tags_to_field }}
{% endif %}