{% extends 'base.html.twig' %} {% block main %}
{% 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) %} {{ section.name }} {{ section.counter }} {% endfor %}
{% 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 %}{% endblock %} {% block form_body %} {% for pref in form.children.configuration %} {{ form_widget(pref) }} {% endfor %} {{ form_rest(form) }} {% endblock %} {% endembed %} {% endfor %}
{% endblock %}