diff --git a/pinaxcon/templates/registrasion/amend_registration.html b/pinaxcon/templates/registrasion/amend_registration.html deleted file mode 100644 index c5bc2cc99703b93d2be9f7c07cc24136215b9d3e..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/amend_registration.html +++ /dev/null @@ -1,46 +0,0 @@ -{% extends "site_base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} - -{% block body %} - -

Item summary for {{ user.attendee.attendeeprofilebase.attendee_name }} - (id={{user.id}})

- -

Paid Items

- -

You cannot remove paid items from someone's registration. You must first - cancel the invoice that added those items. You will need to re-add the items - from that invoice for the user to have them available again.

- -{% include "registrasion/_items_list.html" with items=paid %} - -

Cancelled Items

- -{% include "registrasion/_items_list.html" with items=cancelled %} - -

Amend pending items

- -
- {% csrf_token %} - {{ form | bootstrap}} -
- -
- -

Generate invoice

- -
- Check out cart and view invoice -
- -

Apply voucher

- -
- {% csrf_token %} - {{ voucher_form | bootstrap}} -
- -
- -{% endblock %} diff --git a/pinaxcon/templates/registrasion/badges.html b/pinaxcon/templates/registrasion/badges.html deleted file mode 100644 index b4c6558ac05b03b6906314d9fcda961f58ba5c51..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/badges.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "site_base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} - -{% block body %} - -

Generate badges zip

- -
- {% csrf_token %} - {{ form | bootstrap}} -
- -
- -{% endblock %} diff --git a/pinaxcon/templates/registrasion/checkout_errors.html b/pinaxcon/templates/registrasion/checkout_errors.html deleted file mode 100644 index 5a1bcd4c984e6eee92aff9ef1e6838986f6be442..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/checkout_errors.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends "registrasion/base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} - -{% block body %} - -

Oh No!

- -

We can't produce an invoice for you because of the following errors:

- - - -

We can automatically try to remove products and vouchers that aren't available anymore, - or you can return to the dashboard and try to fix it yourself.

- -
- Try fixing these errors - Return to dashboard -
- -{% endblock %} diff --git a/pinaxcon/templates/registrasion/invoice_mailout.html b/pinaxcon/templates/registrasion/invoice_mailout.html deleted file mode 100644 index ac76c2e8573ce6b1c15fdf9d23a45c0fef385d97..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/invoice_mailout.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "site_base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} - -{% block body %} - -

Send reminder e-mails

- -
- {% csrf_token %} - {{ form | bootstrap}} -
- -
- -{% if emails %} -

Previews

- - {% for email in emails %} -
-
From
{{ email.from_email }}
-
To
{{ email.recipient_list|join:", " }}
-
Subject
{{ email.subject }}
-
Body
{{ email.body }}
-
-
- {% endfor %} - -{% endif %} - -{% endblock %} diff --git a/pinaxcon/templates/registrasion/manual_payment.html b/pinaxcon/templates/registrasion/manual_payment.html deleted file mode 100644 index cdfef2c21c6bb95176a63c32e9e20770cf4fd82a..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/manual_payment.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "registrasion/base.html" %} -{% load bootstrap %} - -{% block body %} - -

Invoice {{ invoice.id }} - {{ invoice.get_status_display }}

- -

Past payments

- - {% include "registrasion/payment_list.html" with payments=invoice.paymentbase_set.all %} - -

Apply manual payment

- -

Enter a reference and the amount of the payment. A refund is a negative - payment.

- -
- {% csrf_token %} - - - {{ form|bootstrap }} -
- -
- - Return to invoice -
-
- - -{% endblock %} diff --git a/pinaxcon/templates/registrasion/payment_list.html b/pinaxcon/templates/registrasion/payment_list.html deleted file mode 100644 index 7c2edbc39365eacda201fc92f4fdc8acd41f03c3..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/payment_list.html +++ /dev/null @@ -1,16 +0,0 @@ -{% if payments %} - - - - - - - {% for payment in payments %} - - - - - - {% endfor %} -
Payment timeReferenceAmount
{{payment.time}}{{payment.reference}}{{payment.amount}}
-{% endif %} diff --git a/pinaxcon/templates/registrasion/report.html b/pinaxcon/templates/registrasion/report.html deleted file mode 100644 index cd9cfecae98b24054158b2434676f2aee30a3eb8..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/report.html +++ /dev/null @@ -1,44 +0,0 @@ -{% extends "site_base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} - -{% block body %} - -

{{ title }}

- - {% if form %} -
- {{ form | bootstrap}} -
- -
- {% endif %} -
- -{% for report in reports %} - -
- View as CSV -
- -

{{ report.title }}

- - - - {% for heading in report.headings %} - - {% endfor %} - - {% for line in report.rows %} - - {% for item in line %} - - {% endfor %} - - {% endfor %} -
{{ heading }}
- {{ item|safe }} -
-{% endfor %} - -{% endblock %} diff --git a/pinaxcon/templates/registrasion/reports_list.html b/pinaxcon/templates/registrasion/reports_list.html deleted file mode 100644 index f588359345f7c897ed51708f189a123fb688b0a9..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/reports_list.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends "site_base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} -{% block body %} - -

Registration reports

- - - {% for report in reports %} - - - - - {% endfor %} -
- {{ report.name }} - - {{ report.description }} -
- -{% endblock %} diff --git a/pinaxcon/templates/registrasion/review.html b/pinaxcon/templates/registrasion/review.html deleted file mode 100644 index 7927c763e003317a733e9f791246336dfd24f440..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/review.html +++ /dev/null @@ -1,74 +0,0 @@ -{% extends "registrasion/base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} - -{% block body %} - -

Review your selection

- - {% items_pending as pending %} - {% if pending %} - -

Current selection

- -

You've selected the following items, which will be in your invoice when - you check out:

- {% include "registrasion/_items_list.html" with items=pending %} - - {% items_purchased as purchased %} - {% if purchased %} -

You've already paid for the following items:

- {% include "registrasion/_items_list.html" with items=purchased suffix="(PAID)" %} - {% endif %} - - - {% missing_categories as missing %} - -

Add to your selection

- -

You can add these items now, or you can come back and add them in a - later purchase.

- - {% if missing %} - -

- You have not selected any items from the following - categories. Even if your ticket includes complimentary tickets to social - events, or t-shirts, you must still add them to your selection. - -

- - {% include "registrasion/_category_list.html" with categories=missing %} - - {% endif %} - -

- You can also change your selection from these categories: -

- - {% available_categories as available %} - {% include "registrasion/_category_list.html" with categories=available exclude=missing %} - -

What next?

- -

You can either generate an invoice and pay for your selections, or return to - the dashboard.

- -
- - Check out and pay - - Return to dashboard -
- - {% else %} - -

You have no items that need to be paid.

- -
- Return to dashboard -
- - {% endif %} - -{% endblock %}