2016-09-30 10:46:05 +00:00
|
|
|
{% extends "registrasion/base.html" %}
|
|
|
|
{% load registrasion_tags %}
|
2017-09-27 13:46:13 +00:00
|
|
|
{% load lca2018_tags %}
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
{% block header_title %}Review your selection{% endblock %}
|
|
|
|
{% block header_inset_image %}{% illustration "wineglass.svg" %}{% endblock %}
|
|
|
|
{% block header_paragraph %}
|
|
|
|
Please ensure that you have selected all of the products you require, including
|
|
|
|
t-shirts and social event tickets.
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-10-01 13:43:11 +00:00
|
|
|
{% block scripts_extra %}
|
|
|
|
{{ voucher_form.media.js }}
|
2017-12-23 12:05:56 +00:00
|
|
|
{{ form.media.js }}
|
2017-10-01 13:43:11 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
2018-09-29 01:11:20 +00:00
|
|
|
{% block proposals_body %}
|
2018-09-29 03:50:42 +00:00
|
|
|
<h1 class="mb-4">Order Review</h1>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
{% items_pending as pending %}
|
|
|
|
{% if pending %}
|
2018-09-29 03:50:42 +00:00
|
|
|
<div class="my-4">
|
|
|
|
<h2>Current selection</h2>
|
|
|
|
<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 %}
|
|
|
|
</div>
|
2018-01-16 12:05:19 +00:00
|
|
|
{% endif %}
|
2018-09-29 01:11:20 +00:00
|
|
|
|
2016-09-30 10:46:05 +00:00
|
|
|
{% items_purchased as purchased %}
|
|
|
|
{% if purchased %}
|
2018-09-29 03:14:48 +00:00
|
|
|
<div class="my-4">
|
2018-09-29 03:50:42 +00:00
|
|
|
<h2>Previously purchased</h2>
|
2016-09-30 10:46:05 +00:00
|
|
|
<p>You've already paid for the following items:</p>
|
|
|
|
{% include "registrasion/_items_list.html" with items=purchased suffix="<em>(PAID)</em>" %}
|
2018-09-29 01:11:20 +00:00
|
|
|
</div>
|
2016-09-30 10:46:05 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2018-09-29 01:29:32 +00:00
|
|
|
<div class="my-4">
|
2018-09-29 03:50:42 +00:00
|
|
|
<h2>Modify your selection</h2>
|
2018-09-29 03:14:48 +00:00
|
|
|
<p>
|
2018-09-29 01:29:32 +00:00
|
|
|
{% missing_categories as missing %}
|
2018-09-29 03:14:48 +00:00
|
|
|
{% if missing %}
|
2018-09-29 01:11:20 +00:00
|
|
|
<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>
|
|
|
|
|
|
|
|
{% include "registrasion/_category_list.html" with categories=missing %}
|
2018-09-29 03:14:48 +00:00
|
|
|
{% endif %}
|
|
|
|
</p>
|
2018-09-29 01:11:20 +00:00
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
<p>
|
|
|
|
<strong>You can also change your selection from these categories:</strong>
|
|
|
|
{% available_categories as available %}
|
|
|
|
{% include "registrasion/_category_list.html" with categories=available exclude=missing %}
|
|
|
|
</p>
|
|
|
|
</div>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
<div class="my-4">
|
|
|
|
<h2>Voucher</h2>
|
|
|
|
<p>If you have been given a voucher, please <a id="voucher-form-button" href="{% url "voucher_code" %}">enter your voucher code</a> now.
|
|
|
|
</p>
|
|
|
|
</div>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
<div class="my-4">
|
|
|
|
<h2>What next?</h2>
|
|
|
|
{% if pending %}
|
|
|
|
<p>You can either check out an invoice and pay for your selections, or return to
|
|
|
|
the dashboard.</p>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2018-09-29 04:35:05 +00:00
|
|
|
<a class="btn btn-primary" href="{% url "checkout" %}">
|
2016-09-30 10:46:05 +00:00
|
|
|
<i class="fa fa-credit-card"></i> Check out and pay
|
|
|
|
</a>
|
2018-01-16 12:05:19 +00:00
|
|
|
|
2018-09-29 04:35:05 +00:00
|
|
|
<a class="btn btn-light" href="{% url "dashboard" %}">Return to dashboard</a>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
{% else %}
|
|
|
|
|
|
|
|
<p>You have no items that need to be paid.</p>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
<div class="form-actions">
|
2018-09-29 04:35:05 +00:00
|
|
|
<a class="btn btn-light" href="{% url "dashboard" %}">Return to dashboard</a>
|
2018-09-29 03:50:42 +00:00
|
|
|
</div>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
{% endif %}
|
2016-09-30 10:46:05 +00:00
|
|
|
</div>
|
|
|
|
|
2018-09-29 03:50:42 +00:00
|
|
|
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
{% endblock %}
|