{% extends "base.html" %} {% block content %}

Bookings I Own

{% for booking in bookings %}

{{booking.purpose}} ({{booking.id}})

  • Lab: {{booking.lab}}
  • Project: {{booking.project}}
  • Start: {{booking.start}}
  • End: {{booking.end}}
{% empty %}

You don't have any bookings. You can create a booking by booking a pod.

{% endfor %}

Bookings I Collaborate On

{% for booking in collab_bookings %}

{{booking.purpose}} ({{booking.id}})

  • Owner: {{booking.owner}}
  • Lab: {{booking.lab}}
  • Project: {{booking.project}}
  • Start: {{booking.start}}
  • End: {{booking.end}}
{% empty %}

There are no collaborative bookings.

{% endfor %}
Expired Bookings
{% for booking in expired_bookings %}

{{booking.purpose}} ({{booking.id}})

  • Owner: {{booking.owner}}
  • Lab: {{booking.lab}}
  • Project: {{booking.project}}
  • Start: {{booking.start}}
  • End: {{booking.end}}
{% empty %}

There are no expired bookings.

{% endfor %}
{% endblock %}