{# banking/partials/tx_rows.html – kompletná verzia #} {% load tz %} {% for tx in filter.qs %} {# 1 – dátum + čas #} {% language 'sk' %} {{ tx.created|localtime|date:"d. m. Y H:i" }} {% endlanguage %} {# 2 – IBAN protiúčtu #} {% if tx.beneficiary == account %} {{ tx.payer.iban }} {% else %} {{ tx.beneficiary.iban }} {% endif %} {# 3 – suma #} {% if tx.payer == account %}-{% endif %} {{ tx.amount }} € {# 4 – typ + action link #} {% if tx.payer == account %} {% trans "Sent" %}  |  {% trans "Repeat" %} {% else %} {% trans "Received" %} {% endif %} {% empty %} {% trans "No transactions found." %} {% endfor %}