{% extends "wafer/base_form.html" %} {% load crispy_forms_tags %} {% block title %}{{ WAFER_CONFERENCE_NAME }} - Front Desk{% endblock %} {% block content %}
Username | Name | Arrival | Confirmed | Paid | Check In | {% for attendee in results %}|
---|---|---|---|---|---|---|
{{ 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 %} |