Changeset - 4f46c715289a
[Not reviewed]
0 3 1
Christopher Neugebauer - 7 years ago 2016-09-14 03:51:16
chrisjrn@gmail.com
Makes the review screen *much* more comprehensive.

Fixes #7
4 files changed with 50 insertions and 9 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/dashboard.html
Show inline comments
...
 
@@ -138,15 +138,13 @@
 
                {% if purchased %}
 
                  <h5>Paid items</h5>
 
                  {% include "registrasion/items_list.html" with items=purchased %}
 
                {% endif %}
 
                <h5>Add/Update items</h5>
 
                {% available_categories as categories %}
 
                {% for category in categories %}
 
                  <li><a href="{% url "product_category" category.id %}">{{ category.name }}</a></li>
 
                {% endfor %}
 
                {% include "registrasion/_category_list.html" with categories=categories %}
 
              </ul>
 

	
 
              {% invoices as invoices %}
 
              {% if invoices %}
 
              <h5>Invoices</h5>
 
                <ul>
pinaxcon/templates/registrasion/_category_list.html
Show inline comments
 
new file 100644
 
<ul>
 
  {% for category in categories %}
 
    {% if not category in exclude %}
 
      <li><a href="{% url "product_category" category.id %}">{{ category.name }}</a></li>
 
    {% endif %}
 
  {% endfor %}
 
</ul>
pinaxcon/templates/registrasion/guided_registration_complete.html
Show inline comments
 
{% extends "registrasion/base.html" %}
 
{% load bootstrap %}
 
{% load registrasion_tags %}
 

	
 
{% block body %}
 

	
 
  <h1>Conference Registration – Review</h1>
 
  <h1>Review your selection</h1>
 

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

	
 
  <p><em>Step 4 of 4</em></p>
 
  <h3>Current selection</h3>
 

	
 
  <p>You're almost done! You've selected the following items:<p>
 
  <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 %}
 

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

	
 
    <p>
 
      <strong>You have <em>not</em> selected any items from the following
 
        categories:</strong>
 
    </p>
 
    {% include "registrasion/_category_list.html" with categories=missing %}
 

	
 
  {% endif %}
 

	
 
  <h3></h3>
 

	
 
  <p><strong>You can also select more items from these categories:</strong></p>
 

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

	
 
  <h3>What next?</h3>
 

	
 
  <p>You can either generate an invoice and pay for your registration, or return to
 
    the dashboard to make amendments.</p>
 
      the dashboard.</p>
 

	
 
  <div class="form-actions">
 
    <a class="btn btn-default" href="{% url "checkout" %}">Check out and pay</a>
 
    <a class="btn btn-default" href="{% url "checkout" %}">
 
      <i class="fa fa-credit-card"></i> Check out and pay
 
    </a>
 
    <a class="btn btn-default" href="{% url "dashboard" %}">Return to dashboard</a>
 
  </div>
 

	
 
  {% else %}
 

	
 
  <p>You have no items that need to be paid.</p>
pinaxcon/templates/registrasion/items_list.html
Show inline comments
 
{% if items %}
 
  <ul>
 
    {% for item in items %}
 
      <li>{{ item.quantity }} &times; {{ item.product }}</li>
 
      <li>{{ item.quantity }} &times; {{ item.product }} {{ suffix }}</li>
 
    {% endfor %}
 
  </ul>
 
{% endif %}
0 comments (0 inline, 0 general)