{% for hidden in form.hidden_fields %}
{{hidden}}
{% if hidden.errors %}
{{ hidden.errors }}
{% endif %}
{% endfor %}
{% with force_large_col=True %}
{% with form.qalocation as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
{% with form.qaparent as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
{% endwith %}
{{ form.create_treatment }}
{% with force_large_col=false %}{% for field in form %}
{% if field.name != 'qalocation' and field.name != 'qaparent' and field.name != 'create_treatment' %}
{% include "blocks/bs_field_snippet.html" %}
{% endif %}
{% endfor %}{% endwith %}