Fixed the mailto link 59/74159/1
authornschoenfeld <nschoenfeld@iol.unh.edu>
Tue, 17 Oct 2023 19:22:38 +0000 (15:22 -0400)
committerSawyer Bergeron <sbergeron@iol.unh.edu>
Tue, 17 Oct 2023 19:42:54 +0000 (19:42 +0000)
Change-Id: I703a31bf19cb78eee321f51a24f91b18f0400f5a
Signed-off-by: Nicholas Schoenfeld <nschoenfeld@iol.unh.edu>
(cherry picked from commit 8e2f07edb297daaf087d8c205f46259e3ca0422d)

src/booking/views.py

index c6df8a1..df446d5 100644 (file)
@@ -89,7 +89,8 @@ def booking_detail_view(request, booking_id):
         'title': 'Booking Details',
         'booking': booking,
         'status': statuses,
-        'collab_string': ', '.join(map(str, booking.collaborators.all()))
+        'collab_string': ', '.join(map(str, booking.collaborators.all())),
+        'contact_email': booking.lab.contact_email
     }
 
     return render(