{% extends 'base.html' %} {% block content %}
{% include "generics/breadcrumbs.html" %}
Operation survey

Enabled: Fields are displayed into the end user survey

Default: Can be left empty or filled with a string or a jinja template string based on the current {{ instance }}. E.g: {{ instance.spec.key }} or {{ instance.name }}

Validators: Admin provided field validator scripts

{% csrf_token %} {{ formset.management_form }} {% for form in formset %}
{{ form.instance.name }} {{ form.as_p }}
{% if not forloop.last %}
{% endif %} {% endfor %}
{% endblock %}