{% extends 'app/base.html' %} {% block content %}
{% csrf_token %}
Using Payment Backend: {{ title }}

×

Result: {{ result.status }}

Paying {{ amount }} BTC to address: {{ address }}
    {% for txn in result.response %}
  1. Received: {{ txn.amount }} BTC - transaction id: {{ txn.txid }}
  2. {% empty %}
  3. No transactions to this address so far.
  4. {% endfor %}

{% endblock %}