{% extends "events/base-print.html" %} {% load pagination_tags %} {% load event_tags %} {% load base_tags %} {% load perm_tags %} {% load avatar_tags %} {% load base_filters %} {% load i18n %} {% block title %} {{ event.title }} - {{ event.start_dt|date }} - {% trans "Registrant Roster" %} {{ roster_view }} {% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
« {% trans "Back to event" %}

{{ event.title }} - {% trans "Registrant Roster" %} {{ roster_view|capfirst }}

{{ event.place.address }} {{ event.place.city_state|join:", "}} {{ event.place.zip }}

{{ event.start_dt|date }} {{ event.start_dt|date:"fA" }} - {{ event.end_dt|date:"fA" }}
Sort by:
*** Registrants without names (if any) are listed at the bottom.
{% if has_addons %} {% endif %} {% if discount_available %} {% endif %} {% for registrant in registrants %} {% if registrant.invoice_dict.balance > 0 %} {% else%} {% endif %} {% if discount_available %} {% else %} {% endif %} {% if has_addons %} {% if registrant.is_primary and registrant.addons %} {% else %} {% endif %} {% endif %} {% if discount_available %} {% endif %} {% if registrant.invoice_dict.balance > 0 %} {% else %} {% endif %} {% if discount_available %} {% else %} {% endif %} {% with registrant.additionals as additionals %} {% if registrant.invoice_dict.balance > 0 %} {% else %} {% endif %} {% endwith %} {% endfor %} {% if has_addons %} {% endif %}
# {% trans "Name & Phone" %} {% trans "Title & Company" %} {% trans "Inv#" %} {% trans "Inv$" %} {% trans "Reg#" %} {% trans "Reg$" %}{% trans "Addon$" %}{% trans "Discount$" %}{% trans "Balance" %} Attend
{{ forloop.counter }} {% if registrant.user_id %}
{% firstof registrant.lastname_firstname registrant.email %} {% if registrant.memberid %} Member {% endif %}
{% else %}
{% if registrant.lastname_firstname or registrant.email%} {% firstof registrant.lastname_firstname registrant.email %} {% else %} {% trans "Guest#" %}{{ registrant.pk }} {% endif %}
{% endif %}
{% if registrant.company_name %}{{ registrant.company_name }}{% endif %}{% if registrant.position_title %}{% if registrant.company_name %} / {% endif %}{{ registrant.position_title }}{% endif %}
{% if registrant.invoice_dict.id %}I-{{ registrant.invoice_dict.id }}{% endif %} ${{ registrant.invoice_dict.total }} R-{{ registrant.registration_id }} ${{ registrant.amount|add_decimal:registrant.discount_amount|floatformat:"2" }} ${{ registrant.amount|floatformat:"2" }} ${{ registrant.addons_amount|floatformat:"2" }} -${{ registrant.discount_amount|floatformat:"2" }} ${{ registrant.invoice_dict.balance|floatformat:"2" }}
  {% if registrant.phone %}{{ registrant.phone|phonenumber }}{% endif %} {% if registrant.roster_field_list %} {% for field in registrant.roster_field_list %} {% if field.value %}
{{ field.label }}: {{ field.value }}
{% endif %} {% endfor %} {% endif %} {% if registrant.comments %}
{{ registrant.comments }}
{% endif %} {% if request.user.is_superuser %} {% if registrant.invoice_dict.admin_notes %}
{% trans "admin notes: " %}{{ registrant.invoice_dict.admin_notes }}
{% endif %} {% endif %}
{% if registrant.email %}{{ registrant.email }}{% endif %}
Registered as: {% firstof registrant.price_title 'Untitled' %}
{% if registrant.invoice_dict.tender_date %} {% trans "TENDERED: " %}{{ registrant.invoice_dict.tender_date|date_long }} {% else %} {% trans "Not Tendered" %} {% endif %} {% if registrant.discount_amount > 0 %} {% if registrant.registration.invoice.discount_code and registrant.registration.invoice.get_discount_url %} {% trans "discount code" %}({{ registrant.registration.invoice.discount_code }}) {% else %} discount {% endif %} {% endif %} {% if registrant.checked_in and registrant.checked_in_dt %}{{ registrant.checked_in_dt|date:'m/d h:iA' }}{% endif %}
{% if additionals %} {% if registrant.invoice_dict.id %} {% trans "Additional registrants on this invoice:" %} {% else %} {% trans "Additional registrants:" %} {% endif %} {% for reg in additionals %} {% if reg.lastname_firstname or reg.email%} [{% firstof reg.lastname_firstname reg.email %}] {% else %} [{% trans "Guest#" %}{{ reg.pk }}] {% endif %} {% endfor %} {% endif %} {% if has_addons %} {% if registrant.is_primary and registrant.addons %}
{% trans "addons:" %} {{ registrant.addons }} {% endif %} {% endif %}
 
{% trans "Total" %} ${{ total_sum|floatformat:2 }}${{ addon_total_sum|floatformat:2 }}${{ balance_sum|floatformat:2 }} {% if total_checked_in > 0 %}{{ total_checked_in }}{% endif %}
{% if roster_view == 'paid' or roster_view == 'total' %}
{{ num_registrants_who_paid }}
{% trans "Paid" %}
{% endif %} {% if roster_view == 'non-paid' or roster_view == 'total' %}
{{ num_registrants_who_owe }}
{% trans "Non-Paid" %}
{% endif %} {% if roster_view == 'total' %}
{{ event.registrants.count }}
{% trans "Total" %}
{% endif %}
{% if roster_view = 'non-paid' %}
{% trans "Showing only non-paid registrants." %}
{% endif %} {% if roster_view = 'paid' %}
{% trans "Showing only paid registrants." %}
{% endif %} {% if roster_view = 'total' %}
{% trans "Showing paid and non-paid registrants." %}
{% endif %}
{% blocktrans %}Show only paid{% endblocktrans %} {% blocktrans %}Show only non-paid{% endblocktrans %} {% blocktrans %}Show total{% endblocktrans %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}