{% for hidden in form.hidden_fields %}
{{hidden}}
{% if hidden.errors %}
{{ hidden.errors }}
{% endif %}
{% endfor %}
{% with form.container as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
{% with form.container_to_change as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
{{ form.create_treatment }}
{% with force_large_col=false %}{% for field in form %}
{% if field.name != 'container_to_change' and field.name != 'container' and field.name != 'create_treatment' %}
{% include "blocks/bs_field_snippet.html" %}
{% endif %}
{% endfor %}{% endwith %}
{% endblock %}
{% block js %}
var update_form_display = function(){
if ($("#{{form.create_treatment.auto_id}}:checked").length){
$("#new-treatment").show();
} else {
$("#new-treatment").hide();
}
};
var treatment_type_ref_choices = "{{form.treatment_type_ref_choices|safe}}";
var treatment_type_current_choices = "{{form.treatment_type_current_choices|safe}}";
var treatment_type_all_choices = "{{form.treatment_type_all_choices|safe}}";
var update_treatment_type_choices = function(){
var container_to_change = $("#id_qa-packaging-container_to_change").val();
var tt_sel = $("#id_qa-packaging-treatment_type")
tt_sel.empty()
if (container_to_change == 'reference'){
tt_sel.append(treatment_type_ref_choices);
}
if (container_to_change == 'current'){
tt_sel.append(treatment_type_current_choices);
}
if (container_to_change == 'current-and-reference'){
tt_sel.append(treatment_type_all_choices);
}
};
$(document).ready(function(){
$("#{{form.create_treatment.auto_id}}").click(update_form_display);
$("#{{form.container_to_change.auto_id}}").change(update_treatment_type_choices);
update_form_display();
update_treatment_type_choices();
});
{% endblock %}