From e26a8259dbe879d722d5e619f9d6efe0b113d1cd 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 --- src/templates/account/booking_list.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/templates/account/booking_list.html') diff --git a/src/templates/account/booking_list.html b/src/templates/account/booking_list.html index ef4df3a..4cd1408 100644 --- a/src/templates/account/booking_list.html +++ b/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