mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-05-05 07:24:04 +02:00
16 lines
451 B
HTML
16 lines
451 B
HTML
{% load tools %}
|
|
{% load i18n %}
|
|
<div class="tw:grid tw:grid-cols-1 tw:gap-4 tw: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>
|