0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-01-10 19:47:35 +00:00
kevinpapst_kimai2/templates/widget/widget-counter-money.html.twig

16 lines
597 B
Twig

{% extends 'widget/widget-counter.html.twig' %}
{% from 'macros/widgets.html.twig' import label %}
{% block widget_data %}
{% if data is empty %}
{% set data = {(null): 0.00} %}
{% endif %}
{% if data|length > 1 %}
{% for currency, revenue in data %}
{{ label(revenue|money(currency|default(options.currency|default(null))), options.color) }}
{% endfor %}
{% else %}
{% for currency, revenue in data %}
{{ revenue|money(currency|default(options.currency|default(null))) }}
{% endfor %}
{% endif %}
{% endblock %}