File diff 019f79c7563f → 2fbffd42a231
pinaxcon/templates/registrasion/review.html
Show inline comments
...
 
@@ -26,60 +26,57 @@
 

	
 
{% block proposals_body %}
 
  <a id="voucher-form-button" class="btn btn-info" href="{% url "voucher_code" %}">Enter voucher code</a>
 

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

	
 
  {% endif %}
 

	
 
  {% items_purchased as purchased %}
 
  {% if purchased %}
 
  <div class="mb-4">
 
    <h3>Previously purchased</h3>
 
    <p>You've already paid for the following items:</p>
 
    {% include "registrasion/_items_list.html" with items=purchased suffix="<em>(PAID)</em>" %}
 
  </div>
 
  {% endif %}
 

	
 
  <div class="mb-4">
 
  <div class="my-4">
 
    <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>
 
    {% missing_categories as missing %}
 
    {% if missing %}
 
    <div class="alert-warning">
 
      <p class="label-warning">
 
    {% missing_categories as missing %}
 
        <strong>You have <em>not</em> selected anything from the following
 
          categories. If your ticket includes any of these, you still need to
 
          make a selection:
 
        </strong>
 
      </p>
 

	
 
      {% include "registrasion/_category_list.html" with categories=missing %}
 
    </div>
 
    {% endif %}
 
  </div>
 

	
 

	
 

	
 

	
 

	
 

	
 
  <p>
 
    <strong>You can also change your selection from these categories:</strong>
 
  </p>
 

	
 
  {% available_categories as available %}
 
  {% include "registrasion/_category_list.html" with categories=available exclude=missing %}
 

	
 
  <h3>What next?</h3>
 

	
 
  {% if pending %}
 
  <p>You can either check out an invoice and pay for your selections, or return to
 
      the dashboard.</p>