{% trans "Deployment Configuration" %}
{% trans "Form Builder" %}
{% for key, label in form_types %}
{{ label }}
{% endfor %}
{% trans "Struktur & Reihenfolge" %}
{% trans "Ordnen Sie Abschnitte und Felder in der Reihenfolge, in der sie im Formular erscheinen sollen." %}
{% for column in columns %}
{% if active_structure_section == column.key %}
{% trans "Geöffnet" %}
{% endif %}
{% endfor %}
{{ column.title }}
{% blocktrans trimmed with count=column.items|length %}{{ count }} Feld/Felder{% endblocktrans %}
{% for item in column.items %}
{% empty %}
{{ item.label }}
{{ item.field_name }}
{% if item.is_custom %}{% trans "Eigen" %}{% endif %}
{% if item.locked %}{% trans "Fix" %}{% endif %}
{% if not item.is_visible %}{% endif %}
{% if item.is_required %}{% trans "Pflicht" %}{% endif %}
{% trans "Noch keine Felder in diesem Abschnitt." %}
{% endfor %}
{% trans "Sichtbarkeit & Regeln" %}
{% trans "Legen Sie fest, welche Teile sichtbar, erforderlich oder regelgesteuert sein sollen." %}
{% if active_module == 'section-rules' %}
{% elif active_module == 'field-rules' %}
{% elif form_type == 'onboarding' and active_module == 'conditional-rules' %}
{% endif %}