{% extends "wafer/base_form.html" %} {% load crispy_forms_tags %} {% block title %}{{ WAFER_CONFERENCE_NAME }} - Check In: {{ object.user.userprofile.display_name }}{% endblock %} {% block content %} {% if attendee.paid %}

Paid

{% else %} {% endif %}

{{ object.user.userprofile.display_name }}

Print badge {% if meals %}

Meals

{% for date in dates %}{% endfor %} {% for meal_label, dates in meals %} {% for date, check in dates %} {% endfor %} {% endfor %}
Meal \ Date{{ date.day }}
{{ meal_label }}{% if check %}{% endif %}
{% endif %} Change Food (admin only) {% if accomm %}

Accommodation

{% for checkin, checkout in accomm.get_stay_details %} {% endfor %}
Check-In Check-Out Room Roommates
{{ checkin | date }} {{ checkout | date }} {{ accomm.room }} {% for mate in accomm.get_roommates %} {{ mate.user.userprofile.display_name }} {% if mate.check_in %} {% else %} {% endif %} {% if not forloop.last %},{% endif %} {% endfor %}
{% endif %} {% if invoices %}

Invoices

{% endif %} {% if not object.registered_before_deadline %}

Late Registration

Registered after the confirmation deadline.
Only give out swag if there is some left over.

{% endif %}

Check In:

{% crispy form %}

T-Shirt:

{% if t_shirt_swap_available %} {% crispy t_shirt_form %} {% elif t_shirt %}

Selected: {{ t_shirt }}

T-shirt swaps will be possible from {{ T_SHIRT_SWAP_ON_OR_AFTER|date:'DATE_FORMAT' }}

{% endif %} {% if DEBCONF_SHOE_SIZES %}

Shoes:

{% if t_shirt_swap_available %} {% crispy shoes_form %} {% elif shoes %}

Selected: {{ shoes }}

Shoe swaps will be possible from {{ T_SHIRT_SWAP_ON_OR_AFTER|date:'DATE_FORMAT' }}

{% endif %} {% endif %}
{% endblock %}