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