diff --git a/pinaxcon/templates/dashboard.html b/pinaxcon/templates/dashboard.html index cee89a3..67dffdd 100644 --- a/pinaxcon/templates/dashboard.html +++ b/pinaxcon/templates/dashboard.html @@ -141,9 +141,7 @@ {% endif %}
Step 4 of 4
+You're almost done! You've selected the following items:
+
You've selected the following items, which will be in your invoice when + you check out:
{% include "registrasion/items_list.html" with items=pending %} +
You've already paid for the following items:
+ {% items_purchased as purchased %} + {% if purchased %} + {% include "registrasion/items_list.html" with items=purchased suffix="(PAID)" %} + {% endif %} + + + {% missing_categories as missing %} + +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: +
+ {% include "registrasion/_category_list.html" with categories=missing %} + + {% endif %} + + + +You can also select more items from these categories:
+ + {% available_categories as available %} + {% include "registrasion/_category_list.html" with categories=available exclude=missing %} + +You can either generate an invoice and pay for your registration, or return to - the dashboard to make amendments.
+ the dashboard. diff --git a/pinaxcon/templates/registrasion/items_list.html b/pinaxcon/templates/registrasion/items_list.html index 1a21424..9926bc4 100644 --- a/pinaxcon/templates/registrasion/items_list.html +++ b/pinaxcon/templates/registrasion/items_list.html @@ -1,7 +1,7 @@ {% if items %}