diff --git a/pinaxcon/templates/registrasion/items_list.html b/pinaxcon/templates/registrasion/_items_list.html similarity index 100% rename from pinaxcon/templates/registrasion/items_list.html rename to pinaxcon/templates/registrasion/_items_list.html diff --git a/pinaxcon/templates/registrasion/amend_registration.html b/pinaxcon/templates/registrasion/amend_registration.html index faa66c88fbeb919ad22b82fff5bac101267158c2..c5bc2cc99703b93d2be9f7c07cc24136215b9d3e 100644 --- a/pinaxcon/templates/registrasion/amend_registration.html +++ b/pinaxcon/templates/registrasion/amend_registration.html @@ -13,11 +13,11 @@ 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 %} +{% include "registrasion/_items_list.html" with items=paid %}

Cancelled Items

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

Amend pending items

diff --git a/pinaxcon/templates/registrasion/guided_registration_complete.html b/pinaxcon/templates/registrasion/guided_registration_complete.html index 30dc3ce241a8da7aa8735f8e7d7bcb5558aca998..f906c8be27ce9f02c7ee2fabce50334c8e111570 100644 --- a/pinaxcon/templates/registrasion/guided_registration_complete.html +++ b/pinaxcon/templates/registrasion/guided_registration_complete.html @@ -13,12 +13,12 @@

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

- {% include "registrasion/items_list.html" with items=pending %} + {% 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)" %} + {% include "registrasion/_items_list.html" with items=purchased suffix="(PAID)" %} {% endif %} diff --git a/pinaxcon/templates/registrasion/product_category.html b/pinaxcon/templates/registrasion/product_category.html index 85c5a8909b1701e892523931b05135fab424279f..135d253f1127dd03ead10500fb43c3f8bd2407d5 100644 --- a/pinaxcon/templates/registrasion/product_category.html +++ b/pinaxcon/templates/registrasion/product_category.html @@ -20,7 +20,7 @@ {% if items %}

Paid items

You have already paid for the following items:

- {% include "registrasion/items_list.html" with items=items %} + {% include "registrasion/_items_list.html" with items=items %} {% endif %}