mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
12 lines
468 B
Twig
12 lines
468 B
Twig
{% set teams = data %}
|
|
{% set title = options.title|default(title|default('teams')) %}
|
|
|
|
{% embed '@theme/embeds/card.html.twig' with {'border': false, 'margin_bottom': 0} %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% block box_title %}{{ title|trans }}{% endblock %}
|
|
{% block box_body_class %}p-0 box-body-scrollable{% endblock %}
|
|
{% block box_body %}
|
|
{{ widgets.team_list(teams, {title: false}) }}
|
|
{% endblock %}
|
|
{% endembed %}
|