Fixed the mailto link 46/74146/2 hotfix_mailto
authornschoenfeld <nschoenfeld@iol.unh.edu>
Tue, 17 Oct 2023 19:22:38 +0000 (15:22 -0400)
committernschoenfeld <nschoenfeld@iol.unh.edu>
Tue, 17 Oct 2023 19:36:37 +0000 (15:36 -0400)
Change-Id: I703a31bf19cb78eee321f51a24f91b18f0400f5a
Signed-off-by: Nicholas Schoenfeld <nschoenfeld@iol.unh.edu>
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(