mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
25 lines
901 B
Twig
25 lines
901 B
Twig
{% embed 'reporting/customer/monthly_projects_data.html.twig' with {'decimal': true, 'stats': stats, 'dataType': dataType} only %}
|
|
{% set rowspanStyle = 'vertical-align:center' %}
|
|
{% block user_activity %}
|
|
{% if dataType == 'rate' or dataType == 'internalRate' %}
|
|
{{ value|money(currency) }}
|
|
{% else %}
|
|
{{ value|duration(true) }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block project_activity %}
|
|
{% if dataType == 'rate' or dataType == 'internalRate' %}
|
|
{{ value|money(currency) }}
|
|
{% else %}
|
|
{{ value|duration(true) }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block project_total %}
|
|
{% if dataType == 'rate' or dataType == 'internalRate' %}
|
|
{{ value|money(currency) }}
|
|
{% else %}
|
|
{{ value|duration(true) }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% endembed %}
|