From 74923100444ad669f63293466880ac59b05f5585 Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Tue, 4 Dec 2018 15:30:42 -0500 Subject: Abstract Out Inline CSS for Account Views Change-Id: I2da02fa7865b618c583d15cca9ef256c62f19286 Signed-off-by: Sawyer Bergeron --- dashboard/src/templates/account/booking_list.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'dashboard/src/templates/account/booking_list.html') diff --git a/dashboard/src/templates/account/booking_list.html b/dashboard/src/templates/account/booking_list.html index ef4df3a..4cd1408 100644 --- a/dashboard/src/templates/account/booking_list.html +++ b/dashboard/src/templates/account/booking_list.html @@ -17,7 +17,7 @@ function edit_booking(pk){

Bookings I Own

{% for booking in bookings %} -
+
  • id: {{booking.id}}
  • lab: {{booking.resource.template.lab.lab_user.username}}
  • @@ -26,15 +26,15 @@ function edit_booking(pk){
  • end: {{booking.end}}
  • purpose: {{booking.purpose}}
-
- - +
+ +
{% endfor %}

Bookings I Collaborate On

{% for booking in collab_bookings %} -
+
  • id: {{booking.id}}
  • lab: {{booking.lab}}
  • @@ -43,9 +43,9 @@ function edit_booking(pk){
  • end: {{booking.end}}
  • purpose: {{booking.purpose}}
-
- - +
+ +
{% endfor %} -- cgit 1.2.3-korg