{% extends "attendeereg/base.html" %} {% block content %}

PyCon Registration Information

{% for invoice in invoices %} {% if forloop.first %}

Invoices

Each credit card transaction gets its own invoice. An invoice can be for one or more registrations. {% endif %} {% if forloop.last %}
IDCostCreatedLast UpdatedStatus
{{ invoice }} ${{ invoice.total_cost }} {{ invoice.created|date }} {{ invoice.updated|date }} {{ invoice.get_payment_status|escape }}

{% endif %} {% endfor %} {% for reg in registrations %} {% if forloop.first %}

Registrations

It is possible to have more than one registration, though this would most likely be in error. Please let the organizers know if you have more than one registration so the matter can be resolved. {% endif %} {% if forloop.last %}
IDBadge NameT-ShirtTutorialsFlagsCreatedLast UpdatedStatus
R{{ reg.id }} {{ reg.badge_name|escape }} {{ reg.get_shirt_size_display|escape }} {{ reg.get_shirt_type_display|escape }} {% for tut in reg.tutorials.all %}{% if not forloop.first %}
{% endif %} {{ tut.get_session_display|escape }} - {{ tut.title|escape }}{% endfor %}
{{ reg.list_types|escape }} {{ reg.created|date }} {{ reg.updated|date }} {% if reg.paid or reg.active %}{% if reg.paid %}Paid{% endif %} {% if reg.active %}Active{% endif %}{% else %}{% if reg.invoice %}{{ reg.invoice.get_payment_status }}{% else %}Not an active registration{% endif %}{% endif %}

{% endif %} {% endfor %} {% for con in connections %} {% if forloop.first %}

Potential Registrations

These are regisrtations which were for the same e-mail address as yours, but have yet to be connected to you. Click the ID link to verify and connect. If these registrations are not your, please contact the organizers. {% endif %} {% if forloop.last %}
IDBadge NameCreated
R{{ con.id }} {{ con.badge_name|escape }} {{ con.created|date }}
{% endif %} {% endfor %} {% endblock %}