{% 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 %} {% for attendee in results %} {% endfor %}
Username Name Email Arrival Confirmed Paid Check In
{{ attendee.user.username }} {{ attendee.user.userprofile.display_name }} {{ attendee.user.email }} {{ attendee.arrival }} {% if attendee.reconfirm %} {% else %} {% endif %} {% if attendee.paid %} {% elif attendee.paid == False %} {% else %} Free {% endif %} {% if attendee.check_in %} Edit Check-Out {% else %} Check-In {% endif %}
{% endif %} {% if view.request.GET.q %}

Not Found?

Register On-site

{% endif %}

Other Tools:

Room Assignments

{% endblock %}