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

{% trans "Branding" %}

{% trans "Portalname, Firmenauftritt, Logo und PDF-Briefkopf zentral verwalten." %}

{% include 'workflows/includes/messages.html' %}
{% for section in branding_sections %}

{{ section.title }}

{{ section.subtitle }}

{% if section.key == 'legal' %}

{% trans "Deutsch" %}

{% for row in section.rows|slice:":2" %}
{{ row.value|default:"-" }}
{% endfor %}

{% trans "English" %}

{% for row in section.rows|slice:"2:" %}
{{ row.value|default:"-" }}
{% endfor %}
{% else %}
{% for row in section.rows %}
{% if row.is_file %} {% if row.value %} {% trans "öffnen" %} {% else %} - {% endif %} {% else %} {{ row.value|default:"-" }} {% endif %}
{% if row.hint %}
{{ row.hint }}
{% endif %}
{% endfor %} {% if section.key == 'appearance' %}
{{ branding.company_name }} {{ branding.portal_title }}
{% trans "Primärfarbe" %} {% trans "Sekundärfarbe" %}
{% endif %}
{% endif %}
{% csrf_token %} {% if section.key == 'legal' %}

{% trans "Deutsch" %}

{% for row in section.rows|slice:":2" %}
{{ row.bound_field }} {% if row.bound_field.errors %}
{{ row.bound_field.errors|join:", " }}
{% endif %}
{% endfor %}

{% trans "English" %}

{% for row in section.rows|slice:"2:" %}
{{ row.bound_field }} {% if row.bound_field.errors %}
{{ row.bound_field.errors|join:", " }}
{% endif %}
{% endfor %}
{% else %}
{% for row in section.rows %}
{{ row.bound_field }} {% if row.hint %}
{{ row.hint }}
{% endif %} {% if row.is_file and row.value %}
{% if row.name == 'logo_image' %}{% trans "Aktuelles Logo:" %} {% elif row.name == 'favicon_image' %}{% trans "Aktuelles Favicon:" %} {% elif row.name == 'pdf_letterhead' %}{% trans "Aktueller Briefkopf:" %} {% endif %} {% trans "öffnen" %}
{% endif %} {% if row.bound_field.errors %}
{{ row.bound_field.errors|join:", " }}
{% endif %}
{% endfor %} {% if section.key == 'appearance' %}
{{ branding.company_name }} {{ branding.portal_title }}
{% trans "Primärfarbe" %} {% trans "Sekundärfarbe" %}
{% endif %}
{% endif %}
{% endfor %}
{% trans "Die aktuell gesetzte Deployment-Branding bleibt erhalten, bis hier Werte geändert oder Dateien hochgeladen werden." %}
{% endblock %} {% block extra_scripts %} {% endblock %}