{% extends "base.html" %} {% load staticfiles %} {% block head %} {% if withdraw and withdraw == "success" %} {% endif %} {% if js == 'use_js' %} {% endif %} {% endblock head %} {% block headermsg %}

Welcome {{ name }}!

{% endblock headermsg %} {% block content %}
{% if withdraw %} {% if withdraw == "success" %}

Withdrawal approved!

{% else %}

Withdrawal failed!

{% endif %} {% endif %} {% if registration %} {% if registration == "success" %}

Registration successful!

{% endif %} {% endif %}

Wallet not installed!

You need to install the Taler wallet to withdraw digital coins. Right now, you need Chrome or Chromium to install the wallet. We plan to support other browsers in the future.

Withdraw digital coins using Taler

{% csrf_token %} Amount to withdraw:

Transaction history

{% if history %} {% for item in history %} {% endfor %}
Date Amount Counterpart Subject
{{ item.date }} {% if item.direction == "FROM" %}+{% else %}-{% endif %}{{ item.float_amount }} {{ item.float_currency }} {% if item.counterpart_username %} {{ item.counterpart_username }} {% endif %} (account #{{ item.counterpart }}) {{ item.subject }}
{% else %}

No transactions made to/from this account

{% endif %}
{% endblock %}