0
0
mirror of https://github.com/kevinpapst/kimai2.git synced 2024-12-22 12:18:29 +00:00
kevinpapst_kimai2/templates/widget/widget-counter.html.twig
2024-05-01 14:24:24 +02:00

30 lines
970 B
Twig

{% set url = null %}
{% if options.route is defined %}
{% set url = path(options.route, options.routeOptions|default([])) %}
{% endif %}
<div class="card card-sm">
<div class="card-body">
<div class="row align-items-center">
<div class="col-auto">
{% if not url is empty %}<a href="{{ url }}">{% endif %}
<span class="bg-{{ options.color|default('green') }} text-white avatar">
{{ icon(options.icon, true) }}
</span>
{% if not url is empty %}</a>{% endif %}
</div>
<div class="col">
<div class="font-weight-medium">
{{ title|trans }}
</div>
<div class="text-body-secondary">
{% block widget_data %}
{{ data }}
{% endblock %}
</div>
</div>
</div>
</div>
</div>