Changeset - 39d0947637df
[Not reviewed]
1 3 1
Christopher Neugebauer - 8 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
...
 
@@ -4,29 +4,29 @@
 

	
 
{% block body %}
 

	
 
<h2>Item summary for {{ user.attendee.attendeeprofilebase.attendee_name }}
 
  (id={{user.id}})</h2>
 

	
 
<h3>Paid Items</h3>
 

	
 
<p>You cannot remove paid items from someone's registration. You must first
 
  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>
 

	
 
<form method="POST">
 
  {% csrf_token %}
 
  {{ form | bootstrap}}
 
  <br/>
 
  <input type="submit">
 
</form>
 

	
 
<h3>Generate invoice</h3>
 

	
pinaxcon/templates/registrasion/guided_registration_complete.html
Show inline comments
...
 
@@ -4,30 +4,30 @@
 

	
 
{% block body %}
 

	
 
  <h1>Review your selection</h1>
 

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

	
 
  <h3>Current selection</h3>
 

	
 
  <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 %}
 

	
 

	
 
  {% missing_categories as missing %}
 

	
 
  <h3>Add to your selection</h3>
 

	
 
  <p>You can add these items now, or you can come back and add them in a
 
    later purchase. </p>
 

	
 
  {% if missing %}
 

	
pinaxcon/templates/registrasion/product_category.html
Show inline comments
...
 
@@ -11,25 +11,25 @@
 
    <table>
 
        {{ voucher_form | bootstrap }}
 
    </table>
 

	
 
    <div class="form-actions">
 
        <input class="btn btn-primary" type="submit" value="Add voucher" />
 
    </div>
 

	
 
    {% items_purchased category as items %}
 
    {% 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 %}
 

	
 

	
 
    {% if discounts %}
 
      <h3>Available Discounts</h3>
 
      {% include "registrasion/discount_list.html" with discounts=discounts %}
 
    {% endif %}
 

	
 
    <h3>Available Products</h3>
 
    <p>{{ category.description }}</p>
 
    <table>
 
        {{ form | bootstrap }}
0 comments (0 inline, 0 general)