0
0
mirror of https://github.com/kevinpapst/kimai2.git synced 2024-12-22 12:18:29 +00:00
kevinpapst_kimai2/templates/team/actions.html.twig

10 lines
330 B
Twig

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