{% extends "cms/home.html" %} {% load crispy_forms_tags i18n sekizai_tags static %} {% block title %}{% trans "Additional Name Information Required" %}{% endblock %} {% block body_id %}classes{% endblock %} {% block content %} {% block summary %}
{% trans "You've selected:" %}
{% for item in invoice.invoiceitem_set.all %} {% if item.eventRegistration %} {% else %} {% endif %} {% endfor %} {% if addonItems %} {% for addon in addonItems %} {% endfor %} {% endif %} {% if discount_code_amount > 0 %} {% for code in discount_codes %} {% endfor %} {% endif %} {% if voucher and voucher.beforeTax %} {% endif %} {% if invoice.taxes and invoice.buyerPaysSalesTax %} {% endif %} {% if voucher and not voucher.beforeTax %} {% endif %}
{% if item.eventRegistration.dropIn %}{% trans "DROP IN" %}: {% endif %}{{ item.eventRegistration.event.name }}{% if item.eventRegistration.role %} - {{ item.eventRegistration.role.name }}{% endif %}{{ item.description }}{{ currencySymbol }}{{ item.grossTotal|floatformat:2 }}
{% trans "Free Add-On" %}: {{ addon }}
{% trans "Discount Code Applied" %}: {{ code.0 }} -{{ currencySymbol }}{{ code.2|floatformat:2 }}
{% trans "Voucher" %}: {{ voucher.voucherName }} ({{ voucher.voucherId }}) -{{ currencySymbol }}{{ voucher.voucherAmount|floatformat:2 }}
{% trans "Taxes" %} {{ currencySymbol }}{{ invoice.taxes|floatformat:2 }}
{% trans "Voucher" %}: {{ voucher.voucherName }} ({{ voucher.voucherId }}) -{{ currencySymbol }}{{ voucher.voucherAmount|floatformat:2 }}
{% trans "Subtotal" %}: {{ currencySymbol }}{{ invoice.outstandingBalance|floatformat:2 }}
{% endblock %} {# Display any warning or error messages associated with the previous form submission #}
{% for message in messages %}
{{ message }}
{% endfor %}
{% block form %}

{% trans "Step 3: Additional Name Information Required" %}

{% blocktrans %} You have submitted multiple event registrations. So that we may accurately keep track of attendance, please enter the correct name and email information for each person whom you are registering. {% endblocktrans %}

{% trans "You are" %}: {{invoice.firstName }} {{ invoice.lastName }} {% if invoice.email %}<{{ invoice.email }}>{% endif %}

{% csrf_token %} {% crispy form %}
{% endblock %} {% addtoblock "js" %} {% endaddtoblock %} {% endblock %}