{% extends "events/base-wide.html" %} {% load event_tags %} {% load styled_forms %} {% load base_filters %} {% block title %}{{ block.super }}{% trans "Registration" %} {{ event.title }} {{ event.start_dt|date:"M j, Y" }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Registration" %}

{% if event.is_table %}
{% blocktrans with price=event_price|format_currency title=pricing.title quantity=pricing.quantity %}{{ price }} {{ title }} for a Table/Team of {{ quantity }}{% endblocktrans %}
{% if pricing.description %}{{ pricing.description|safe }}{% endif %} {% endif %}
{{ event.start_dt|date:"M j, Y" }}
{% if not event.all_day %} {{ event.start_dt|date:"P" }} - {{ event.end_dt|date:"P" }}{% endif %}
{% include "events/include/spots_status.html" %}
{% if not event.registration_configuration.require_guests_info and event.anony_setting == 'open' or event.is_table %}
{% if not event.registration_configuration.require_guests_info and event.anony_setting == 'open' %}
{% blocktrans %} Only the first registrant information is required. The rest of the registrants can be left blank if you don't know the information. {% endblocktrans %}
{% endif %} {% if event.is_table %}
{% blocktrans %}The first one is the primary registrant and responsible for the billing if applicable. {% endblocktrans %}
{% endif %}
{% endif %} {% if reg_form.errors.values or registrant.non_form_errors or has_registrant_form_errors or not within_available_spots %}
{% endif %}
{% csrf_token %}
{% trans 'Summary' %}
{{ SITE_GLOBAL_CURRENCYSYMBOL }} {{ total_price|floatformat:2 }}
{# price list #} {% if event.is_table %} {% else %} {% for price_entry in price_list %} {% endfor %} {% endif %} {% for form in addon_formset.forms %} {% endfor %}
{% trans "Table of " %}{{ pricing.quantity }} {{ SITE_GLOBAL_CURRENCYSYMBOL }} {% with price_list|first as price_entry %} {{ price_entry.price|floatformat:2 }} {% endwith %}
{% trans "registrant" %}#{{ forloop.counter }} {{ SITE_GLOBAL_CURRENCYSYMBOL }} {{ price_entry.price|floatformat:2 }}
{% trans "addon" %}#{{ forloop.counter }} {{ SITE_GLOBAL_CURRENCYSYMBOL }} {{ form.chosen_addon.price|floatformat:2 }}
{% trans "Total" %}
{{ SITE_GLOBAL_CURRENCYSYMBOL }} {{ total_price|floatformat:2 }}
{% trans "Discount" %}
- {{ SITE_GLOBAL_CURRENCYSYMBOL }} 0
{% trans "Total" %}
{{ SITE_GLOBAL_CURRENCYSYMBOL }} {{ total_price|floatformat:2 }}
{# float-widow#}
{{ registrant.management_form }} {% for form in registrant.forms %} {% with forloop.counter as forloop_counter %}
{% trans "Registrant" %} #{{ forloop_counter }}:
{% for field in form %} {% if field.label != 'Delete' and field.name != 'use_free_pass' %} {% if field.name == 'override' or field.name == 'override_price' %}
{{ field.errors }}
{% if field|is_checkbox %}
{{ field }} {% trans field.label %}
{% else %} {% if field.name == 'override' %}
{{ field }}
{% else %}
{% trans field.label %} {{ field }}
{% endif %} {% endif %} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% else %} {% if field.name == 'memberid' %}
{{ field.errors }}
{% trans field.label %}: {{ field }}
{{ field.help_text }}
{% else %} {% if field.name == 'reminder' %}
{{ field.errors }}
{{ field }}
{{ field.help_text }}
{% else %}
{% if field|is_checkbox %}
{{ field.errors }}
{{ field }}
{% trans field.label %}
{% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% else%} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% trans field.label %}
{{ field }}
{% endif %} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% endif %} {% endif %} {% endif %} {% endif %} {% endfor %} {% if not event.is_table and event.registration_configuration.allow_free_pass %}
*** for corporate members only
{{ form.use_free_pass }}
{% endif %} {% if form.DELETE %}
{% endif %}
{% if forloop_counter == 1 and event.is_table %} {% endif %}
{% endwith %} {% endfor %}
{% if not event.is_table %}
{% endif %} {% if addons %}
{% include 'events/addons/addon-add-box.html' %}
{% trans "Addons Added:" %}
{% include 'events/addons/formset.html' %}
{% else %} {{ addon_formset.management_form }} {% endif %} {% if event.is_table %}
{{ reg_form.override_table.errors }}
{{ reg_form.override_table }}
{% if reg_form.override_table.help_text %}
{{ reg_form.override_table.help_text }}
{% endif %}
{{ reg_form.override_price_table.errors }}
{% trans reg_form.override_price_table.label %} {{ reg_form.override_price_table }}
{% if reg_form.override_price_table.help_text %}
{{ reg_form.override_price_table.help_text }}
{% endif %}
{% endif %} {% if reg_form.discount_code %}
{{ reg_form.discount_code.errors }}
{% trans "Discount Code" %}
{{ reg_form.discount_code }}
{% endif %}
{% if event.free_event %} {{ reg_form.payment_method }} {% else %}
{{ reg_form.payment_method.errors }}
{% trans "Payment Method" %}
{{ reg_form.payment_method }}
{% endif %} {% if reg_form.captcha %}
{{ reg_form.captcha.errors }}
{{ reg_form.captcha.label }}
{{ reg_form.captcha }}
{% endif %}
{% if do_confirmation %}

{% trans "Please review the following." %}

{% trans 'Your registration will not be completed until you click "Confirm My Registration" at the bottom of this page.' %}

{% for registrant in flat_registrants %} {% include "events/reg8n/registrant_summary_preview.html" %} {% endfor %} {% if discount_applied %}

** Discount is Applied.

Disclaimer: The availability of discount code is subject to change without any warranty before confirming your registration.

{% endif %} {% if gratuity_form.gratuity or gratuity_form.gratuity_preferred %}
{% if gratuity_form.errors.values %}
    {{ gratuity_form.non_field_errors }} {% for field in gratuity_form %} {% if field.errors %} {% for error in field.errors %}
  • {{ field.label_tag }} – {{ error }}
  • {% endfor %} {% endif %} {% endfor %}
{% endif %} {% if gratuity_form.gratuity %}
{{ gratuity_form.gratuity }}
{% endif %} {% if gratuity_form.gratuity_preferred %}
{{ gratuity_form.gratuity_preferred }}
{{ gratuity_form.gratuity_preferred.help_text }}

{% endif %}
{% trans "Subtotal:" %}{{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ subtotal }}
{% trans "Gratuity:" %}0%
{% trans "Tax:" %}{{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ total_tax }}
{% trans "Total:" %}{{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ grand_total }}
{% endif %}




{% endif %}
{% include 'events/registration/base_forms.html' %}
{% endblock %} {% block extra_body %} {% if not event.is_table and event.registration_configuration.allow_free_pass %} {% endif %} {{ block.super }} {% endblock %}