From 2ec0d7b9f5c1354977b821c6b06c24a3ffa13142 Mon Sep 17 00:00:00 2001 From: Gergely Csatari Date: Thu, 26 Oct 2023 10:33:28 +0300 Subject: Removing project content and adding a note that the development continues in GitHub Change-Id: I25c58a679dbf92b2367d826429b7cda936bf9f0e Signed-off-by: Gergely Csatari --- src/templates/base/account/booking_list.html | 146 --------------------------- 1 file changed, 146 deletions(-) delete mode 100644 src/templates/base/account/booking_list.html (limited to 'src/templates/base/account/booking_list.html') diff --git a/src/templates/base/account/booking_list.html b/src/templates/base/account/booking_list.html deleted file mode 100644 index f9234bc..0000000 --- a/src/templates/base/account/booking_list.html +++ /dev/null @@ -1,146 +0,0 @@ -{% extends "base.html" %} -{% block content %} -

Bookings I Own

-
- {% for booking in bookings %} -
-
-
-

Booking {{booking.id}}

-
-
    -
  • id: {{booking.id}}
  • -
  • lab: {{booking.lab}}
  • -
  • resource: {{booking.resource.template.name}}
  • -
  • start: {{booking.start}}
  • -
  • end: {{booking.end}}
  • -
  • purpose: {{booking.purpose}}
  • -
- -
-
- {% 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 {{booking.id}}

-
-
    -
  • id: {{booking.id}}
  • -
  • lab: {{booking.lab}}
  • -
  • resource: {{booking.resource.template.name}}
  • -
  • start: {{booking.start}}
  • -
  • end: {{booking.end}}
  • -
  • purpose: {{booking.purpose}}
  • -
- -
-
- {% empty %} -
-

There are no collaborative bookings.

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

Booking {{booking.id}}

-
-
    -
  • id: {{booking.id}}
  • -
  • lab: {{booking.lab}}
  • -
  • resource: {{booking.resource.template.name}}
  • -
  • start: {{booking.start}}
  • -
  • end: {{booking.end}}
  • -
  • purpose: {{booking.purpose}}
  • -
  • owner: {{booking.owner.userprofile.email_addr}}
  • -
- -
-
- {% empty %} -
-

There are no expired bookings.

-
- {% endfor %} -
- - - - -{% endblock %} -- cgit 1.2.3-korg