diff --git a/pinaxcon/templates/registrasion/guided_registration_complete.html b/pinaxcon/templates/registrasion/guided_registration_complete.html new file mode 100644 index 0000000000000000000000000000000000000000..2683957016d40d7929108ee7ee86e645feff80b3 --- /dev/null +++ b/pinaxcon/templates/registrasion/guided_registration_complete.html @@ -0,0 +1,35 @@ +{% extends "registrasion/base.html" %} +{% load bootstrap %} +{% load registrasion_tags %} + +{% block body %} + +

Conference Registration – Review

+ + {% items_pending as pending %} + {% if pending %} + +

Step 4 of 4

+ +

You're almost done! You've selected the following items:

+ {% include "registrasion/items_list.html" with items=pending %} + +

You can either generate an invoice and pay for your registration, or return to + the dashboard to make amendments.

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

You have no items that need to be paid.

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