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

16 lines
585 B
Twig

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