{% extends "admin.html" %} {% load url from future %} {% load coreextras %} {% block headtitle %}Meeting Bookings - {% endblock %} {% block headscript %} {% endblock %} {% block meetings_active %}class="active"{% endblock %} {% block content %}
{% csrf_token %}

General Details

{% include "admin/partials/form.html" with form=booking_form %} {% if sessions %}

Sessions

{% for session in sessions %}
{% if session.get_booking_count < session.quantity_available %}
{% else %}

This is session is currently fully booked

{% endif %}
{% endfor %} {% endif %} {% if meeting_days %}

Day Registration

{% for meeting_day in meeting_days %}
{% endfor %}
{% endif %} {% if social_events %}

Additional Items

{% for social_event in social_events %} {% endfor %} {% endif %}

Payment Details

{% include "admin/partials/form.html" with form=notes_form %}
{% endblock %}