{% load eventurl %} {% load money %} {% for wallet in wallets %}

Wallet {{ wallet.public_pan }}

Balance: {{ wallet.balance|money:wallet.currency }}

{% if wallet.transactions.count %} {% for transaction in wallet.transactions.all %} {% endfor %} {% else %} {% endif %}
Time Description Amount
{{ transaction.timestamp|date:"SHORT_DATETIME_FORMAT" }} {{ transaction.descriptor }} {% if transaction.order_position %} View order {% elif transaction.order_payment %} View order {% elif transaction.order_refund %} View order {% endif %} {{ transaction.value|money:wallet.currency }}
No transactions yet.
{% endfor %}