2016-03-30 04:13:50 +00:00
|
|
|
{% extends "registrasion/base.html" %}
|
|
|
|
{% load bootstrap %}
|
|
|
|
{% load registrasion_tags %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
2016-09-14 03:30:34 +00:00
|
|
|
<h1>Review your selection</h1>
|
2016-03-30 04:13:50 +00:00
|
|
|
|
|
|
|
{% items_pending as pending %}
|
|
|
|
{% if pending %}
|
|
|
|
|
2016-09-14 03:30:34 +00:00
|
|
|
<h3>Current selection</h3>
|
2016-03-30 04:13:50 +00:00
|
|
|
|
2016-09-14 03:30:34 +00:00
|
|
|
<p>You've selected the following items, which will be in your invoice when
|
|
|
|
you check out:<p>
|
2016-09-14 03:50:11 +00:00
|
|
|
{% include "registrasion/_items_list.html" with items=pending %}
|
2016-03-30 04:13:50 +00:00
|
|
|
|
2016-09-14 03:30:34 +00:00
|
|
|
{% items_purchased as purchased %}
|
|
|
|
{% if purchased %}
|
2016-09-14 05:01:07 +00:00
|
|
|
<p>You've already paid for the following items:</p>
|
2016-09-14 03:50:11 +00:00
|
|
|
{% include "registrasion/_items_list.html" with items=purchased suffix="(PAID)" %}
|
2016-09-14 03:30:34 +00:00
|
|
|
{% 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
|
2016-09-14 04:33:05 +00:00
|
|
|
later purchase.</p>
|
2016-09-14 03:30:34 +00:00
|
|
|
|
|
|
|
{% if missing %}
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<strong>You have <em>not</em> selected any items from the following
|
2016-09-14 04:33:05 +00:00
|
|
|
categories. Even if your ticket includes complimentary tickets to social
|
|
|
|
events, or t-shirts, you must still add them to your selection.
|
|
|
|
</strong>
|
2016-09-14 03:30:34 +00:00
|
|
|
</p>
|
2016-09-14 04:33:05 +00:00
|
|
|
|
2016-09-14 03:30:34 +00:00
|
|
|
{% include "registrasion/_category_list.html" with categories=missing %}
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
2016-09-14 05:01:07 +00:00
|
|
|
<p>
|
|
|
|
<strong>You can also change your selection from these categories:</strong>
|
|
|
|
</p>
|
2016-09-14 03:30:34 +00:00
|
|
|
|
|
|
|
{% available_categories as available %}
|
|
|
|
{% include "registrasion/_category_list.html" with categories=available exclude=missing %}
|
|
|
|
|
|
|
|
<h3>What next?</h3>
|
|
|
|
|
2016-09-14 05:01:07 +00:00
|
|
|
<p>You can either generate an invoice and pay for your selections, or return to
|
2016-09-14 03:30:34 +00:00
|
|
|
the dashboard.</p>
|
2016-03-30 04:13:50 +00:00
|
|
|
|
|
|
|
<div class="form-actions">
|
2016-09-14 05:02:16 +00:00
|
|
|
<a class="btn btn-primary" href="{% url "checkout" %}">
|
2016-09-14 03:30:34 +00:00
|
|
|
<i class="fa fa-credit-card"></i> Check out and pay
|
|
|
|
</a>
|
2016-03-30 04:13:50 +00:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<div class="form-actions">
|
|
|
|
<a class="btn btn-default" href="{% url "dashboard" %}">Return to dashboard</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|