Bookings

{% if bookings %}
{% for booking in bookings %}

{{ booking.name }}

{{ booking.start_at.strftime('%d %b %Y, %H:%M') }} {% if booking.end_at %} – {{ booking.end_at.strftime('%H:%M') }} {% endif %} {% if booking.calendar_name %} · {{ booking.calendar_name }} {% endif %} {% if booking.cost %} · £{{ booking.cost }} {% endif %}
{% if booking.state == 'confirmed' %} confirmed {% elif booking.state == 'provisional' %} provisional {% else %} {{ booking.state }} {% endif %}
{% endfor %}
{% else %}

No bookings yet.

{% endif %}