mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
6 lines
366 B
Twig
6 lines
366 B
Twig
{% block dd_timesheet %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% import "calendar/widgets.html.twig" as calendar %}
|
|
{{ calendar.dd_event(widgets.label_color(entry.title, entry.color), entry.project ? widgets.label_customer(entry.project.customer) : null, entry.project ? widgets.label_project(entry.project) : null, null) }}
|
|
{% endblock %}
|