{% extends "pycon/main.html" %} {% block main_title %}Registration Information{% endblock %} {% block main_csslinks %} {% endblock %} {% block main_body %} {% block content %}

Registration Overview


Attendee Roster

Online searchable/sortable Attendee Admin
Printable Registration Desk Attendee Listing

Badge CSV

Badge data can be exported in a csv file: registrations.csv

{% for col in csv_format %} {% endfor %} {% for col in csv_format %} {% endfor %}
format legend
{{col.0|escape}}{% if not forloop.last %},{% endif %}
{% if col.1 %}{{col.1|escape}}{% else %}<value>{%endif%}
Examples:
{% filter escape %}
    Robert M. Lefkowitz,K,S,,,,
    "Lawrence S. Canino, Jr",,,,,,
    Non Reg Vendor,,,V,,,X
    Reg Vendor,,,V,,,
    Most,K,S,V,C,G,
    {% endfilter %}

Statistics

Registration
{{reg.public}}Public Registerants
{{reg.private}}Private Registerants
{{reg.vendor}}Non-Registered Vendors
{{reg.total}}Total Attendees
Food {{ num_vegan }} vegan
Attendee Types {% for ent in flags %} {% endfor %}
{{ ent.count }}{{ ent.name|escape }}
Tutorials
{{tutorial_attendance_count}} Unique Attendees
AM {% for ent in tutorials_am %} {% endfor %}
{{ ent.name|escape }}{{ ent.count }}
PM {% for ent in tutorials_pm %} {% endfor %}
{{ ent.name|escape }}{{ ent.count }}
T-Shirts {% for ent in tshirts %} {% endfor %}
{{ ent.count }}{{ ent.name|escape }}

Registration Django User Conflicts

Any users mentioned in this section need to be hand fixed in the admin.
{{ spkrs_not_reg|length }} Unregistered Speakers {% for usr in spkrs_not_reg %}
{{ usr|escape }}
{% endfor %}
{{ pres_not_reg|length }} Unregistered Presenters {% for usr in pres_not_reg %}
{{ usr|escape }}
{% endfor %}
{{ chairs_not_reg|length }} Unregistered Session Chairs {% for usr in chairs_not_reg %}
{{ usr|escape }}
{% endfor %}
{% endblock %} {% endblock %}