mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-04-30 07:20:11 +00:00
11 lines
381 B
Twig
11 lines
381 B
Twig
{% set teams = data %}
|
|
{% set title = options.title|default(title|default('teams')) %}
|
|
|
|
{% embed 'dashboard/widget.html.twig' with {fullsize: true} %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% block box_body %}
|
|
<div class="box-body-scrollable">
|
|
{{ widgets.team_list(teams, {title: false}) }}
|
|
</div>
|
|
{% endblock %}
|
|
{% endembed %}
|