2018-10-31 04:19:04 +00:00
|
|
|
{% extends "registrasion/base.html" %}
|
2016-09-30 10:46:05 +00:00
|
|
|
{% load bootstrap %}
|
|
|
|
{% load registrasion_tags %}
|
|
|
|
|
2020-01-06 14:38:15 +00:00
|
|
|
{% block head_title %}Stripe refunds for credit note #{{ credit_note.id}}{% endblock %}
|
|
|
|
{% block page_title %}Stripe refunds for credit note #{{ credit_note.id}}{% endblock %}
|
|
|
|
|
2018-10-31 04:10:56 +00:00
|
|
|
{% block proposals_body %}
|
2020-01-06 14:38:15 +00:00
|
|
|
<h3>Details</h3>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
<p>This credit note is valued at ${{ credit_note.value }}.</p>
|
|
|
|
|
|
|
|
<h3>Available refunds</h3>
|
|
|
|
|
|
|
|
<p>Currently credit notes can only be cashed out in full in a single
|
|
|
|
transaction. If you need to cash out to multiple small payments, you will
|
|
|
|
need to manually invoke the refunds from the Stripe Dashboard.</p>
|
|
|
|
|
2017-04-16 06:01:57 +00:00
|
|
|
<form class="form-horizontal" method="post">
|
2016-09-30 10:46:05 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
{{form|bootstrap}}
|
|
|
|
<input id="submit" class="btn btn-primary" type="submit" value="Refund {{ credit_note.value }} to payment source" />
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|