{% extends 'workflows/base_shell.html' %} {% load static i18n %} {% block title %}{% trans "Form Builder" %}{% endblock %} {% block extra_css %} {% endblock %} {% block shell_body %} {% include 'workflows/includes/app_header.html' with header_show_home=1 header_inside_shell=1 %}
{% trans "Deployment Configuration" %}

{% trans "Form Builder" %}

{% for key, label in form_types %} {{ label }} {% endfor %}
{% include 'workflows/includes/messages.html' %}

{% trans "Struktur & Reihenfolge" %}

{% trans "Geöffnet" %}
{% for column in columns %}

{{ column.title }}

{% blocktrans trimmed with count=column.items|length %}{{ count }} Feld/Felder{% endblocktrans %}
{% for item in column.items %}
{{ 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 %}
{% endfor %}
{% endfor %}

{% trans "Sichtbarkeit & Regeln" %}

{% trans "Öffnen" %}

{% trans "Abschnitte steuern" %}

{% trans "Öffnen" %}
{% csrf_token %}
{% for section in section_rule_items %}
{{ section.title }} {% blocktrans trimmed with count=section.field_count %}{{ count }} Feld/Felder in diesem Abschnitt.{% endblocktrans %}
{% if section.locked %}{% trans "Fix" %} {% elif section.is_visible %}{% trans "Sichtbar" %} {% else %}{% trans "Ausgeblendet" %}{% endif %}
{% endfor %}

{% trans "Feldregeln verwalten" %}

{% trans "Öffnen" %}
{% csrf_token %}
{% for group in field_rule_groups %}

{{ group.title }}

{% blocktrans trimmed with count=group.items|length %}{{ count }} Feld/Felder{% endblocktrans %}
{% for item in group.items %}
{{ item.label }}
{{ item.field_name }}
{% if item.locked %} {% trans "Fix" %} {% elif not item.is_visible %} {% elif item.is_required %} {% trans "Pflicht" %} {% else %} {% trans "Flexibel" %} {% endif %}
{% empty %}
{% trans "Keine Feldregeln verfügbar." %}
{% endfor %}
{% endfor %}
{% if form_type == 'onboarding' %}

{% trans "Bedingte Logik" %}

{% trans "Öffnen" %}
{% csrf_token %}
{% for item in conditional_rule_items %}
{% trans "Sichtbarkeit" %}

{{ item.title }}

{% if item.description %}

{{ item.description }}

{% endif %}
{% trans "Steuert" %}
{% for field_name in item.target_fields %} {{ field_name }} {% empty %} {% trans "Keine Ziel-Felder." %} {% endfor %}
{% with first_clause=item.clauses.0 second_clause=item.clauses.1 %}
{% trans "Wenn" %}
{% trans "Zusätzliche Bedingung" %}
{% trans "Und" %}
{% endwith %}
{% endfor %}
{% endif %}

{% trans "Optionen & Texte" %}

{% trans "Öffnen" %}

{% trans "Optionen verwalten" %}

{% trans "Öffnen" %}
{% csrf_token %}
{% csrf_token %}
{% for item in option_items %} {% empty %} {% endfor %}
{% trans "Sortierung" %} {% trans "Label (DE)" %} {% trans "Label (EN)" %} Value {% trans "Aktiv" %} {% trans "Löschen" %}
⋮⋮
{% trans "Keine Optionen in dieser Kategorie." %}

{% trans "Feldtexte verwalten" %}

{% trans "Öffnen" %}
{% csrf_token %}
{% for group in field_text_groups %} {% for item in group.items %} {% empty %} {% endfor %} {% endfor %}
{% trans "Feld" %} {% trans "Label (DE)" %} {% trans "Label (EN)" %} {% trans "Hilfetext (DE)" %} {% trans "Hilfetext (EN)" %}
{{ group.title }}
{{ item.field_name }}
{% trans "Keine Feldkonfigurationen verfügbar." %}
{% if form_type == 'onboarding' %}

{% trans "Eigene Abschnitte" %}

{% trans "Öffnen" %}
{% csrf_token %}

{% trans "Abschnitt hinzufügen" %}

{% trans "Erstellen Sie zusätzliche Bereiche für deployment-spezifische Informationen." %}

{% csrf_token %}
{% for item in custom_section_items %}
{{ item.title }}
{{ item.section_key }}
{% empty %}
{% trans "Keine eigenen Abschnitte vorhanden." %}
{% endfor %}
{% endif %}

{% trans "Eigene Felder" %}

{% trans "Öffnen" %}
{% csrf_token %}

{% trans "Feld hinzufügen" %}

{% trans "Erstellen Sie zusätzliche Eingaben innerhalb eines bestehenden oder eigenen Abschnitts." %}

{% csrf_token %}
{% for group in custom_field_groups %}

{{ group.title }}

{% blocktrans trimmed with count=group.items|length %}{{ count }} Feld/Felder{% endblocktrans %}
{% for item in group.items %}
{{ item.label }}
{{ item.field_key }}
{% empty %}
{% trans "Keine eigenen Felder vorhanden." %}
{% endfor %}
{% endfor %}

{% trans "Live-Vorschau" %}

{% trans "Öffnen" %}
{% for section in preview_sections %}

{{ section.title }}

{% blocktrans trimmed with count=section.items|length %}{{ count }} Feld/Felder{% endblocktrans %}
{% for item in section.items %} {{ item.label }} {% empty %} {% trans "Keine sichtbaren Felder." %} {% endfor %}
{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}