Files
WYGIWYH/app/templates/yearly_overview/fragments/account_data.html
2025-11-01 03:15:44 -03:00

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>