{% extends "admin.html" %} {% load staticfiles %} {% block headtitle %}Booking Types for {{ meeting }} - {% endblock %} {% block headscript %} {% endblock %} {% block meetings_active %}class="active"{% endblock %} {% block content %}
| 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 %} | {% if booking_type.enabled %}
|
{% else %}
|
{% endif %}
Type Codes ({{ booking_type.get_type_codes.count }}) | ||
There are no booking types for this meeting
{% endif %}