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 faa66c8..c5bc2cc 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 %}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 85c5a89..135d253 100644 --- a/pinaxcon/templates/registrasion/product_category.html +++ b/pinaxcon/templates/registrasion/product_category.html @@ -20,7 +20,7 @@ {% if 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 %}