0
0
mirror of https://github.com/kevinpapst/kimai2.git synced 2024-10-31 06:08:11 +00:00
kevinpapst_kimai2/templates/system-configuration/index.html.twig
2023-09-23 18:15:22 +02:00

53 lines
2.4 KiB
Twig

{% extends 'base.html.twig' %}
{% block main %}
<div class="row">
<div class="col-12 col-xxl-2 col-md-3 mb-3 d-none d-md-block">
<div class="card sticky-xxl-top">
<div class="list-group list-group-flush">
{% set sorted = [] %}
{% for section in sections %}
{% set title = section.model.translation|trans({}, section.model.translationDomain) %}
{% if title == section.model.translation %}
{% set title = section.model.section|trans %}
{% endif %}
{% set sorted = sorted|merge([{'name': title, 'id': section.model.section, 'counter': section.form.children.configuration|length}]) %}
{% endfor %}
{% for section in sorted|sort((a, b) => a.name <=> b.name) %}
<a class="list-group-item d-flex ps-4 pe-4 p-lg-3 pb-md-2 pt-md-2" href="#conf_{{ section.id }}">
{{ section.name }}
<small class="text-body-secondary ms-auto">{{ section.counter }}</small>
</a>
{% endfor %}
</div>
</div>
</div>
<div class="col-12 col-xxl-10 col-md-9">
<div class="row">
<div class="col-12">
{% set formEditTemplate = kimai_context.modalRequest ? 'default/_form_modal.html.twig' : 'default/_form.html.twig' %}
{% for section in sections %}
{% set title = section.model.translation|trans({}, section.model.translationDomain) %}
{% if title == section.model.translation %}
{% set title = section.model.section|trans %}
{% endif %}
{% embed formEditTemplate with {'title': title, 'form': section.form} %}
{% block form_before %}<span id="conf_{{ section.model.section }}"></span>{% endblock %}
{% block form_body %}
{% for pref in form.children.configuration %}
{{ form_widget(pref) }}
{% endfor %}
{{ form_rest(form) }}
{% endblock %}
{% endembed %}
{% endfor %}
</div>
</div>
</div>
</div>
{% endblock %}