mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-01-10 19:47:35 +00:00
9 lines
376 B
Twig
9 lines
376 B
Twig
{% extends kimai_context.modalRequest ? 'form.html.twig' : 'base.html.twig' %}
|
|
|
|
{% block main %}
|
|
{{ include(kimai_context.modalRequest ? 'default/_form_modal.html.twig' : 'default/_form.html.twig', {
|
|
'title': ('permissions'|trans) ~ ': ' ~ customer.name,
|
|
'form': form,
|
|
'back': path('customer_details', {'id': customer.id})
|
|
}) }}
|
|
{% endblock %}
|