{% extends "events/base.html" %} {% load event_tags %} {% load styled_forms %} {% load avatar_tags %} {% load base_filters %} {% load i18n %} {% block title %}{{ block.super }}{% trans "Registration Confirmation" %} {{ event.title }} {{ event.start_dt|date:"M j, Y" }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% trans "Table/Team of " %}{{ registrants_count }} | {% if registration.override_table %}*{% endif %} {% if registration.invoice.discount_amount > 0 %}d{% endif %} {% with registrants|first as registrant %}{{ registrant.amount|format_currency }}{% endwith %} |
(Registered as {{ registration.reg_conf_price.title }}) |
{% if registrant.name %}
{{ registrant.name }}
{% else %}
{% trans "Guest #" %}{{ forloop.counter0 }}
{% endif %}
{% if not registration.is_table and registrant.pricing %}
(registered as {{ registrant.pricing.title }})
{% endif %}
{% if registrant.cancel_dt %}
{% blocktrans with registrant.cancel_dt|date_short as cancel_date %} Canceled on {{ cancel_date }}{% endblocktrans %}
{% else %}
{% if not registration.is_table %}
{% if user.is_authenticated %}
{% trans "Cancel" %}
{% else %}
{% trans "Cancel" %}
{% endif %}
{% endif %}
{% endif %}
{% if registrant.custom_reg_form_entry %}
{% with registrant.custom_reg_form_entry.roster_field_entry_list as roster_field_list %}
{% for field in roster_field_list %}
{% if field.value %}
{{ field.label }}: {{ field.value }}
{% endif %}
{% endfor %}
{% endwith %}
{% endif %}
|
{% if not registration.is_table %} {% if registrant.override %}*{% endif %} {% if registrant.discount_amount > 0 %}d{% endif %} {{ registrant.amount|format_currency }} {% endif %} |
* price overridden | |
d discount applied (discount code: {{ registration.invoice.discount_code }}) |
{{ addon.addon.title }} ({% for option in addon.regaddonoption_set.all %}{{ option.option.title }}{% if not forloop.last %}, {% endif %}{% endfor %}) | {{ addon.amount|format_currency }} |
{% trans "Payment Method: " %}{{ registration.payment_method }}
{% if registration.invoice %} {% trans "View invoice" %} {% endif %} {% if registration.invoice and event.registration_configuration.can_pay_online and registration.invoice.balance > 0 %} {% trans "Pay online" %} {% endif %}