{% extends "admin.html" %} {% load staticfiles %} {% block headtitle %}Booking Types for {{ meeting }} - {% endblock %} {% block headscript %} {% endblock %} {% block meetings_active %}class="active"{% endblock %} {% block content %}
{% if booking_types %} {% for booking_type in booking_types %} {% if booking_type.enabled %} {% else %} {% endif %} {% endfor %}
Name Order Price Limited Enabled
{{ booking_type.name }} {{ booking_type.order }} £{{ booking_type.cost|floatformat:2 }} {% if booking_type.early_bird_cost %}(Until {{ booking_type.early_bird_date }} £{{ booking_type.early_bird_cost|floatformat:2 }}){% endif %} {% if booking_type.limit_to_member_types.all %}{% for member_type in booking_type.limit_to_member_types.all %}{{ member_type }}{% if not forloop.last %},{% endif %}{% endfor %}{% elif booking_type.guests_only %}Guests Only{% else %}No Limitations{% endif %}
{% else %}

There are no booking types for this meeting

{% endif %}

< Back to Meetings

{% endblock %}