parent
4ecd4d0aa4
commit
4f46c71528
4 changed files with 50 additions and 9 deletions
|
@ -141,9 +141,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<h5>Add/Update items</h5>
|
<h5>Add/Update items</h5>
|
||||||
{% available_categories as categories %}
|
{% available_categories as categories %}
|
||||||
{% for category in categories %}
|
{% include "registrasion/_category_list.html" with categories=categories %}
|
||||||
<li><a href="{% url "product_category" category.id %}">{{ category.name }}</a></li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
{% invoices as invoices %}
|
{% invoices as invoices %}
|
||||||
|
|
7
pinaxcon/templates/registrasion/_category_list.html
Normal file
7
pinaxcon/templates/registrasion/_category_list.html
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<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>
|
|
@ -4,21 +4,57 @@
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
|
|
||||||
<h1>Conference Registration – Review</h1>
|
<h1>Review your selection</h1>
|
||||||
|
|
||||||
{% items_pending as pending %}
|
{% items_pending as pending %}
|
||||||
{% if 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 %}
|
{% 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
|
<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">
|
<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>
|
<a class="btn btn-default" href="{% url "dashboard" %}">Return to dashboard</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% if items %}
|
{% if items %}
|
||||||
<ul>
|
<ul>
|
||||||
{% for item in items %}
|
{% for item in items %}
|
||||||
<li>{{ item.quantity }} × {{ item.product }}</li>
|
<li>{{ item.quantity }} × {{ item.product }} {{ suffix }}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue