Files
kimai2/templates/customer/actions.html.twig
2021-03-15 14:18:44 +01:00

16 lines
583 B
Twig

{% macro customers(view) %}
{% import "macros/widgets.html.twig" as widgets %}
{% set event = actions(app.user, 'customers', view) %}
{{ widgets.page_actions(event.actions) }}
{% endmacro %}
{% macro customer(customer, view, options) %}
{% import "macros/widgets.html.twig" as widgets %}
{% set event = actions(app.user, 'customer', view, {'customer': customer}) %}
{% if view == 'index' or view == 'custom' %}
{{ widgets.table_actions(event.actions) }}
{% else %}
{{ widgets.page_actions(event.actions) }}
{% endif %}
{% endmacro %}