* bump packages * add column summarization per customer (#5808) * clarify database requirements * added helper methods to fetch original expected time Co-authored-by: GregorB54321 <34287148+GregorB54321@users.noreply.github.com>
25 lines
1.1 KiB
Twig
25 lines
1.1 KiB
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{% if column is weekend %} weekend{% endif %}{% if column is today %} today{% endif %}">
|
|
{{ column|date_weekday }}
|
|
</th>
|
|
{% endblock %}
|
|
{% block upper_left %} {% endblock %}
|
|
{% block column_classes_project -%}
|
|
{% if column.date is weekend %} weekend{% endif %}{% if column.date is today %} today{% endif %}
|
|
{%- endblock %}
|
|
{% block column_classes_activity -%}
|
|
{% if column.date is weekend %} weekend{% endif %}{% if column.date is today %} today{% endif %}
|
|
{%- endblock %}
|
|
{% block column_classes_total -%}
|
|
{% if column is weekend %} weekend{% endif %}
|
|
{%- endblock %}
|
|
{% block column_classes_customer_total -%}
|
|
{% if column is weekend %} weekend{% endif %}
|
|
{%- endblock %}
|
|
{% endembed %}
|
|
{% endblock %}
|