Changeset - 39d0947637df
[Not reviewed]
1 3 1
Christopher Neugebauer - 7 years ago 2016-09-14 03:51:27
chrisjrn@gmail.com
s/items_list/_items_list/
4 files changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/_items_list.html
Show inline comments
 
file renamed from pinaxcon/templates/registrasion/items_list.html to pinaxcon/templates/registrasion/_items_list.html
pinaxcon/templates/registrasion/amend_registration.html
Show inline comments
...
 
@@ -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.</p>
 

	
 
{% include "registrasion/items_list.html" with items=paid %}
 
{% include "registrasion/_items_list.html" with items=paid %}
 

	
 
<h3>Cancelled Items</h3>
 

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

	
 
<h3>Amend pending items</h3>
 

	
pinaxcon/templates/registrasion/guided_registration_complete.html
Show inline comments
...
 
@@ -13,12 +13,12 @@
 

	
 
  <p>You've selected the following items, which will be in your invoice when
 
    you check out:<p>
 
  {% include "registrasion/items_list.html" with items=pending %}
 
  {% include "registrasion/_items_list.html" with items=pending %}
 

	
 
  <p>You've already paid for the following items:</p>
 
  {% 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 %}
 

	
 

	
pinaxcon/templates/registrasion/product_category.html
Show inline comments
...
 
@@ -20,7 +20,7 @@
 
    {% if items %}
 
      <h3>Paid items</h3>
 
      <p>You have already paid for the following items:</p>
 
      {% include "registrasion/items_list.html" with items=items %}
 
      {% include "registrasion/_items_list.html" with items=items %}
 
    {% endif %}
 

	
 

	
0 comments (0 inline, 0 general)