mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-10 03:03:45 +02:00
16 lines
439 B
HTML
16 lines
439 B
HTML
{% load tools %}
|
|
{% load i18n %}
|
|
<div class="grid grid-cols-1 gap-4 mb-3">
|
|
{% for account_id, account in totals.items %}
|
|
<div>
|
|
<c-ui.account_card :account="account" :account_id="account_id"
|
|
:percentages="percentages"></c-ui.account_card>
|
|
</div>
|
|
{% empty %}
|
|
<div>
|
|
<c-msg.empty
|
|
title="{% translate "No information to display" %}"></c-msg.empty>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|