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

PyCon Registration Information

{% if not have_inv_or_reg %} We have no registration information for your account.
You can create a new registration, or contact the organizers if you feel this is in error.

{% endif %} {% 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 registrations 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 %}

Problems

If you are experiencing any problems (like trying to pay for your registration and you are unable to proceed to checkout), or you'd like to request a change, refund or modification to your invoice, please click the link for your invoice above and send us a change request (links at the bottom of the invoice page). Thank you. {% endblock %}