{% extends "wallet/base.html" %} {% load wallet_tags %} {% block content %}

Your address for receiving coins

{{address}}

Local account: {{user.account.name}}

Balance: {{balance|floatformat:4}} GST

Transfer coins

{% load crispy_forms_tags %} {% crispy form form.helper %}

{% if fees.network %}{{ fees.network }} GST network fee{% endif %} {% if fees.service %}, +{{ fees.service }} GST service fee{% endif %}

{% if fees.network or fees.service %}

Local transfers don't require fees.

{% endif %}

Deposit Transactions

{% for t in deposit_transactions reversed %} {% empty %} {% endfor %}
Transaction id Amount status
{{t.txid }} {% if t.amount %}+{{t.amount|floatformat:4 }} GST{% endif %} {% if t.confirmed %} confirmed {% else %} unconfirmed {%endif%}
no transactions yet

Withdrawal Transactions

{% for t in withdrawal_transactions reversed %} {% empty %} {% endfor %}
Transaction id Amount status
{{t.txid }} -{{t.amount|floatformat:4 }} GST {% if t.confirmed %} confirmed {% else %} unconfirmed {%endif%}
no transactions yet

{% endblock %}