0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-04-20 20:00:16 +00:00
kevinpapst_kimai2/templates/calendar/widgets.html.twig
2023-05-15 19:10:00 +02:00

7 lines
347 B
Twig

{% macro dd_event(title, customer, project, deprecated) %}
{% import "macros/widgets.html.twig" as widgets %}
{{ title }}
{% if project is not null %}
<small class="d-block text-body-secondary text-truncate mt-n1">{{ project }}{% if customer is not null %}, {{ customer }}{% endif %}</small>
{% endif %}
{% endmacro %}