{% extends "cms/admin_home.html" %} {% load sekizai_tags i18n %} {% block content %}

{{ event.name }}

{% trans "Total Students" %}:
{{ event.numRegistered }}
{% trans "Location" %}:
{{ event.location.name }}{% if event.room.name %} - {{ event.room.name }}{% endif %}
{% trans "Time" %}:
{{ event.startTime|date:'l, h:i A' }}
{% trans "Partner Required" %}:
{{ event.partnerRequired|yesno }}
{% if 'core.checkin_customers' in perms %}
{% endif %} {% if 'core.checkin_customers' in perms %} {% endif %} {% if event.partnerRequired %}{% endif %} {% for reg in registrations %} {% if 'core.checkin_customers' in perms %} {% endif %} {% if event.partnerRequired %} {% endif %} {% with reg.registration.invoiceDetails as details %} {% endwith %} {% endfor %}
{% trans "Check In" %}{% trans "Customer" %} {% trans "Reg. Details" %}{% trans "Partner" %}{% trans "Event Pricing" %} {% trans "Total Payment" %} {% trans "All-Time Classes" %} {% trans "Links" %}
{% if reg.customer %} {{ reg.customer.fullName }}
{{ reg.customer.email }} {% elif reg.registration.invoice.fullName or reg.registration.invoice.email %} {{ reg.registration.invoice.fullName }} {% if reg.registration.invoice.fullName %}
{% endif %} {{ reg.registration.invoice.email }} {% else %} {% trans "N/A" %} {% endif %}
{% trans "Role" %}: {% if reg.role %}{{ reg.role }}{% else %}{% trans "N/A" %}{% endif %}
{% if reg.dropIn %} {% trans "Drop-in" %}{% if reg.occurrences.all %}:{% endif %} {% for occ in reg.occurrences.all %} {{ occ.startTime|date:"SHORT_DATE_FORMAT" }}{% if not forloop.last %}, {%endif %} {% endfor %}
{% endif %} {% if reg.registration.payAtDoor %}{% trans "Door registration" %}
{% endif %} {% if reg.registration.student %}{% trans "Student status" %}{% endif %}
{% if reg.data.partner %} {{ reg.data.partner.firstName }} {{ reg.data.partner.lastName }} {% else %} {% trans "N/A" %} {% endif %} {% if reg.discounted or reg.warningFlag %} {% trans "Gross" %}: {{ reg.invoiceItem.grossTotal|floatformat:2 }}
{% trans "Net" %}: {{ reg.invoiceItem.total|floatformat:2 }} {% if reg.refundFlag %}
{% trans "Adjustments/Refunds" %}: {{ reg.invoiceItem.adjustments|floatformat:2 }} {% endif %} {% if reg.invoiceItem.revenueMismatch or reg.invoiceItem.revenueNotYetReceived %}
{% trans "Recorded Revenue" %}: {{ reg.invoiceItem.revenueReported|floatformat:2 }}
{% trans "Received Revenue" %}: {{ reg.invoiceItem.revenueReceived|floatformat:2 }}
{% endif %} {% else %} {{ reg.invoiceItem.total|floatformat:2 }} {% endif %}
{% if reg.registration.warningFlag or reg.registration.refundFlag %} {% trans "Gross Price" %}: {{ details.grossTotal|floatformat:2 }}
{% trans "Net Price" %}: {% if details.grossTotal != details.total %} {{ details.total|floatformat:2 }} {% else %} {{ details.total|floatformat:2 }} {% endif %} {% if reg.registration.refundFlag %}
{% trans "Adjustments/Refunds" %}: {{ details.adjustments|floatformat:2 }} {% endif %} {% if reg.registration.invoice.outstandingBalance != 0 %}
{% trans "Invoice Status" %}: {{ reg.registration.invoice.get_status_display }}
{% trans "Outstanding Balance" %}: {{ reg.registration.invoice.outstandingBalance|floatformat:2 }}
{% endif %} {% else %} {% if details.grossTotal != details.total %} {% trans "Gross Price" %}: {{ details.grossTotal|floatformat:2 }}
{% trans "Net Price" %}: {{ details.total|floatformat:2 }} {% else %} {{ details.total|floatformat:2 }} {% endif %} {% endif %}
{{ reg.customer.numClassSeries }}
{% if 'core.checkin_customers' in perms %}
{% endif %}

{% trans "Class Registration Page" %} {% trans "Select Another Class" %}

{% addtoblock "js" %} {% endaddtoblock %} {% endblock %}