Files @ 7c77001d5e7d
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/stripe/refund.html

Joel Addison
Add Venueless integration to Regidesk

Create Venueless login token as part of checkin to allow attendee to
join an online event from the dashboard.
{% extends "registrasion/base.html" %}
{% load bootstrap %}
{% load registrasion_tags %}

{% block head_title %}Stripe refunds for credit note #{{ credit_note.id}}{% endblock %}
{% block page_title %}Stripe refunds for credit note #{{ credit_note.id}}{% endblock %}

{% block proposals_body %}
  <h3>Details</h3>

  <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>

  <form class="form-horizontal" method="post">
    {% csrf_token %}
    {{form|bootstrap}}
    <input id="submit" class="btn btn-primary" type="submit" value="Refund {{ credit_note.value }} to payment source" />
  </form>
{% endblock %}