{% extends 'workflows/base_shell.html' %} {% load static i18n %} {% block title %}{% trans "Company Config" %}{% endblock %} {% block shell_header %} {% include 'workflows/includes/app_header.html' with header_show_home=1 header_show_lang=1 header_inside_shell=1 %} {% endblock %} {% block extra_css %} {% endblock %} {% block shell_body %}
{% include 'workflows/includes/messages.html' %}
{% for section in company_config_sections %}

{{ section.title }}

{{ section.subtitle }}

{% for row in section.rows %}
{{ row.value|default:"-" }}
{% endfor %}
{% if section.hint %}
{{ section.hint }}
{% endif %}
{% csrf_token %}
{% for row in section.rows %}
{{ row.bound_field }} {% if row.bound_field.errors %}
{{ row.bound_field.errors|join:", " }}
{% endif %}
{% endfor %}
{% if section.hint %}
{{ section.hint }}
{% endif %}
{% endfor %}
{% trans "Diese Ebene ist bewusst von Branding getrennt: Hier geht es um strukturierte Firmendaten, nicht um visuelle Gestaltung." %}
{% endblock %} {% block extra_scripts %} {% endblock %}