aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornschoenfeld <nschoenfeld@iol.unh.edu>2023-10-17 15:22:38 -0400
committernschoenfeld <nschoenfeld@iol.unh.edu>2023-10-17 15:36:37 -0400
commit8e2f07edb297daaf087d8c205f46259e3ca0422d (patch)
tree5da30168cbfcbeef5bba82875594d86d344e6350
parent1e87ea9e9c047960e490f684b0a05fa526037182 (diff)
Fixed the mailto linkhotfix_mailto
Change-Id: I703a31bf19cb78eee321f51a24f91b18f0400f5a Signed-off-by: Nicholas Schoenfeld <nschoenfeld@iol.unh.edu>
-rw-r--r--src/booking/views.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/booking/views.py b/src/booking/views.py
index c6df8a1..df446d5 100644
--- a/src/booking/views.py
+++ b/src/booking/views.py
@@ -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(