{% 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 "Drop-Ins Permitted" %}:
{{ event.allowDropins|yesno }}
{% if 'core.checkin_customers' in perms %}
{% endif %} {% if 'core.checkin_customers' in perms %} {% endif %} {% if event.availableRoles %}{% endif %} {% if event.allowDropins %}{% endif %} {% for reg in registrations %} {% if 'core.checkin_customers' in perms %} {% endif %} {% if event.availableRoles %}{% endif %} {% if event.allowDropins %}{% endif %} {% endfor %}
{% trans "Check In" %}{% trans "Name" %} {% trans "This Series Price" %} {% trans "Total Payment" %}{% trans "Role" %}{% trans "Drop-In" %}{% trans "Student" %} {% trans "Customer Email" %} {% trans "All-Time Classes" %} {% trans "Links" %}
{% if reg.registration.fullName != reg.registration.customer.fullName %} {{ reg.registration.fullName }} {% else %} {{ reg.registration.fullName }} {% endif %} {% if reg.discounted or reg.warningFlag %} {% trans "Gross" %}: {{ reg.price|floatformat:2 }}
{% trans "Net" %}: {{ reg.netPrice|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.price|floatformat:2 }} {% endif %}
{% if reg.registration.warningFlag or reg.registration.refundFlag %} {% trans "Gross Price" %}: {{ reg.registration.totalPrice|floatformat:2 }}
{% trans "Net Price" %}: {% if reg.registration.discounted %} {{ reg.registration.priceWithDiscount|floatformat:2 }} {% else %} {{ reg.registration.priceWithDiscount|floatformat:2 }} {% endif %} {% if reg.registration.refundFlag %}
{% trans "Adjustments/Refunds" %}: {{ reg.registration.invoice.adjustments|floatformat:2 }} {% endif %} {% if reg.registration.invoice.outstandingBalance != 0 %}
{% trans "Invoice Status" %}: {{ reg.registration.invoice.statusLabel }}
{% trans "Outstanding Balance" %}: {{ reg.registration.invoice.outstandingBalance|floatformat:2 }}
{% endif %} {% else %} {% if reg.registration.discounted %} {% trans "Gross Price" %}: {{ reg.registration.totalPrice|floatformat:2 }}
{% trans "Net Price" %}: {{ reg.registration.priceWithDiscount|floatformat:2 }} {% else %} {{ reg.registration.totalPrice|floatformat:2 }} {% endif %} {% endif %}
{{ reg.role }}{{ reg.dropIn }}{{ reg.registration.student }} {{ reg.registration.customer.email }} {{ reg.registration.customer.numClassSeries }}
{% if 'core.view_all_invoices' in perms and reg.registration.invoice %} {% trans "Invoice" %} {% endif %} {% if 'core.change_registration' in perms %} {% trans "Reg." context "registration" %} {% endif %} {% if 'core.process_refunds' in perms and reg.registration.invoice %} {% trans "Refund" %} {% endif %} {% if 'financial.change_revenueitem' in perms and reg.invoiceitem.revenueitem %} {% trans "Rev. Item" %} {% endif %}
{% if 'core.checkin_customers' in perms %}
{% endif %}

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

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