{% load bootstrap %} {% if field_form %}

Edit Field

{% csrf_token %} {{ field_form|bootstrap }}
Delete
{% if selected_field.needs_choices %}

Choices

{% csrf_token %} {{ field_choice_form|bootstrap }}

{% for choice in selected_field.choices.all %}
{{ choice.label }}
{% endfor %}
{% endif %} {% if selected_field.field_type == selected_field.LIKERT_FIELD %}

Likert Scales

Select a Likert Scale

{% include "formly/design/_likert_scales.html" %}

Add a new Likert scale

{% include "formly/design/_likert_scale_form.html" %} {% endif %} {% endif %}