{% extends "wafer/base.html" %} {% block title %}{{ WAFER_CONFERENCE_NAME }} - Invoice {{ object.reference_number }}{% endblock %} {% block content %} {% include 'invoices/includes/invoice.html' %}
{% if object.status == 'new' %} {% if not using_signed_url %}

Forward Invoice:

Is somebody else going to pay this on your behalf?
Send them this URL .
They will be able to combine this with other invoices, and pay them in a single payment, if desired.

Danger Zone:

If you have modified your registration and the invoice is no longer correct, you may cancel it and re-create it.

{% csrf_token %}
{% elif not object.compound %}

Combine Invoices:

If you want to pay for multiple invoices, together, you can combine them into a single invoice.

Combine Invoices
{% endif %} {% endif %}
{% if object.status != 'canceled' %}

Payment:

{% if object.status == 'new' %}
{{ form.render }}

Note: You don't need a PayPal account, they'll happily take payment from your card, without any account. We're just using them as a payment processor.

At the end of the payment process, they'll try to make you create an account, you can click "Not Now".

If you don't see a PayPal button above, and use NoScript, Request Policy, or some similar browser plugin, you may need to whitelist this site in it.

{% elif object.status == 'pending' %}

Waiting for PayPal payment confirmation

{% elif object.status == 'paid' %}

Payment received via PayPal on {{ object.last_update | date }}
PayPal transaction number {{ object.transaction_id }}

{% endif %}
{% else %}

Cancelled!

Cancelled on {{ object.last_update | date }}

{% endif %}
{% endblock %} {% block extra_foot %} {% endblock %}