{% extends "wafer/base_form.html" %} {% load crispy_forms_tags %} {% block title %}{{ WAFER_CONFERENCE_NAME }} - Front Desk{% endblock %} {% block content %}

Front Desk

{% crispy form %} {% if results %}

Attendee{{ num_results|pluralize }}:

{% if num_results > results|length %}
Only showing {{ results|length }} (of {{ num_results }}). Please be more specific.
{% endif %} {% if perms.front_desk.add_checkin %} {% endif %} {% for attendee in results %} {% if perms.front_desk.add_checkin %} {% endif %} {% endfor %}
Username Name Email Arrival Confirmed Swag PaidCheck In
{{ attendee.user.username }} {{ attendee.user.userprofile.display_name }} {{ attendee.user.email }} {{ attendee.arrival }} {% if attendee.confirmed %} {% else %} {% endif %} {% if attendee.registered_before_deadline %} {% else %} {% endif %} {% if attendee.paid %} {% else %} {% endif %} {% if attendee.check_in %} Edit Check-Out {% else %} Check-In {% endif %}
{% endif %} {% if perms.front_desk.add_checkin and view.request.GET.q %}

Not Found?

Register On-site

{% endif %} {% if perm.register.view_accomm %}

Other Tools:

Room Assignments {% if DEBCONF_REVIEW_FREE_ATTENDEES %} Review Attendee Applications {% endif %}

{% endif %}

Data exports:

{% for export in exports %} {{ export.name }} {% endfor %} {% endblock %}