mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-01-10 19:47:35 +00:00
18 lines
791 B
Twig
18 lines
791 B
Twig
{% extends 'reporting/report_by_user_layout.html.twig' %}
|
|
|
|
{% block report_content %}
|
|
{% embed 'reporting/report_by_user_data.html.twig' with {with_links: true} %}
|
|
{% block period_name %}
|
|
<th class="text-center text-nowrap">
|
|
<a href="{{ path('report_user_month', {'date': column|report_date, 'sumType': dataType, 'user': user.id}) }}">
|
|
{{ column|month_name }}<br>
|
|
{{ column|date_format('Y') }}
|
|
</a>
|
|
</th>
|
|
{% endblock %}
|
|
{% block upper_left %} {% endblock %}
|
|
{% block column_classes_project %}{% endblock %}
|
|
{% block column_classes_activity %}{% endblock %}
|
|
{% block column_classes_total %}{% endblock %}
|
|
{% endembed %}
|
|
{% endblock %}
|