0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-01-11 20:08:11 +00:00
kevinpapst_kimai2/templates/reporting/report_by_user.html.twig

22 lines
982 B
Twig
Raw Normal View History

{% extends 'reporting/report_by_user_layout.html.twig' %}
2020-08-16 10:20:33 +00:00
{% block report_content %}
2024-05-01 12:24:24 +00:00
{% embed 'reporting/report_by_user_data.html.twig' with {with_links: true} %}
{% block period_name %}
2024-09-20 12:30:11 +00:00
<th class="text-center text-nowrap{% if column is weekend %} weekend{% endif %}{% if column is today %} today{% endif %}">
{{ column|date_weekday }}
</th>
2020-08-16 10:20:33 +00:00
{% endblock %}
{% block upper_left %}&nbsp;{% endblock %}
{% block column_classes_project -%}
2024-09-20 12:30:11 +00:00
{% if column.date is weekend %} weekend{% endif %}{% if column.date is today %} today{% endif %}
{%- endblock %}
{% block column_classes_activity -%}
2024-09-20 12:30:11 +00:00
{% if column.date is weekend %} weekend{% endif %}{% if column.date is today %} today{% endif %}
{%- endblock %}
{% block column_classes_total -%}
2024-09-20 12:30:11 +00:00
{% if column is weekend %} weekend{% endif %}
{%- endblock %}
2020-08-16 10:20:33 +00:00
{% endembed %}
{% endblock %}