Files
WYGIWYH/app/templates/yearly_overview/fragments/account_data.html
2025-10-28 14:13:30 -03:00

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>