{% load i18n %} {% load currency_conversions %} {% if wallet.has_history %}
{% trans "Date" %} | {% trans "Type" %} | {% trans "To/From" %} | {% trans "Amount" %} | {% trans "Description" %} | ||||||
---|---|---|---|---|---|---|---|---|---|---|
{{ addr.created_at }} | {% trans "Credit" %} | {{ addr.address|show_addr:'short'|safe}} | +{{ addr.received }} | {{ t.description }} | ||||||
{{ t.created_at }} | {% trans "Credit" %} | {{ t.from_wallet.label }} | +{{ t.amount }} | {{ t.description }} | ||||||
{{ t.created_at }} | {% trans "Debit" %} | {% if t.to_wallet %}{{ t.to_wallet.label }} | -{{ t.amount }} | {{ t.description }} | {% else %} {% if t.to_bitcoinaddress %}{{ t.to_bitcoinaddress|show_addr:'short'|safe}} | -{{ t.amount }} | {{ t.description }} | {% else %}{% trans "The bitcoin network" %} | -{{ t.amount }} | {% trans "Fee paid directly to the bitcoin network" %} | {% endif %} {% endif %}