Files
kimai2/templates/calendar/widgets.html.twig
2021-07-13 12:12:10 +02:00

8 lines
329 B
Twig

{% macro dd_event(title, customer, project, deprecated) %}
{% import "macros/widgets.html.twig" as widgets %}
<span class="title">{{ title }}</span>
{% if project is not null %}
<span class="subtitle">{{ project }}{% if customer is not null %}, {{ customer }}{% endif %}</span>
{% endif %}
{% endmacro %}