{% extends "registrasion/base.html" %} {% load bootstrap %} {% load registrasion_tags %} {% block body %}
You've selected the following items, which will be in your invoice when you check out:
{% include "registrasion/_items_list.html" with items=pending %}
You've already paid for the following items:
{% items_purchased as purchased %} {% if purchased %} {% include "registrasion/_items_list.html" with items=purchased suffix="(PAID)" %} {% endif %} {% missing_categories as missing %}You can add these items now, or you can come back and add them in a later purchase.
{% if missing %}You have not selected any items from the following categories. Even if your ticket includes complimentary tickets to social events, or t-shirts, you must still add them to your selection.
{% include "registrasion/_category_list.html" with categories=missing %} {% endif %}You can also select more items from these categories:
{% available_categories as available %} {% include "registrasion/_category_list.html" with categories=available exclude=missing %}You can either generate an invoice and pay for your registration, or return to the dashboard.
{% else %}You have no items that need to be paid.
{% endif %} {% endblock %}