{% extends "admin.html" %} {% load staticfiles %} {% block headtitle %}Meeting Bookings - {% endblock %} {% block headscript %} {% endblock %} {% block meetings_active %}class="active"{% endblock %} {% block content %}
{% if pending_bookings or invoiced_bookings or approved_bookings or rejected_bookings %} {% if pending_bookings %}

Bookings Awaiting Approval

{% for booking in pending_bookings %} {% if booking.paid %} {% else %} {% endif %} {% endfor %}
Name Email Address Price Paid Time Approve
{{ booking.given_name }} {{ booking.surname }} {{ booking.email_address }}{{ booking.price_paid }}Unpaid Invoice{{ booking.time }}
{% endif %} {% if invoiced_bookings %}

Invoiced Bookings

{% for booking in invoiced_bookings %} {% if booking.paid %} {% else %} {% endif %} {% endfor %}
Name Email Address Price Paid Time Approve
{{ booking.given_name }} {{ booking.surname }} {{ booking.email_address }}{{ booking.price_paid }}Unpaid Mark Paid{{ booking.time }}
{% endif %} {% if approved_bookings %}

Approved Bookings

{% for booking in approved_bookings %} {% if booking.paid %} {% else %} {% endif %} {% endfor %}
Name Email Address Price Paid Time
{{ booking.given_name }} {{ booking.surname }} {{ booking.email_address }}{{ booking.price_paid }}Unpaid Mark Paid{{ booking.time }}
{% endif %} {% if rejected_bookings %}

Rejected Bookings

{% for booking in rejected_bookings %} {% if booking.paid %} {% else %} {% endif %} {% endfor %}
Name Email Address Price Paid Time
{{ booking.given_name }} {{ booking.surname }} {{ booking.email_address }}{{ booking.price_paid }}Unpaid Mark Paid{{ booking.time }}
{% endif %} {% else %}

There are no bookings for this meeting yet

{% endif %} {% if incomplete_bookings %}

Incomplete Bookings

{% for booking in incomplete_bookings %} {% endfor %}
Name Email Address Time Reminder
{{ booking.given_name }} {{ booking.surname }} {{ booking.email_address }} {{ booking.time }} {% if booking.registration_incomplete_last_sent %}Resend Reminder{% else %}Send Reminder{% endif %}
{% endif %}

< Back to Meetings

{% endblock %}