diff options
author | nschoenfeld <nschoenfeld@iol.unh.edu> | 2023-10-17 15:22:38 -0400 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2023-10-17 19:42:54 +0000 |
commit | 1947d40115c7b13f8617ea92078a6f910d6bc799 (patch) | |
tree | 5da30168cbfcbeef5bba82875594d86d344e6350 | |
parent | 1e87ea9e9c047960e490f684b0a05fa526037182 (diff) |
Fixed the mailto link
Change-Id: I703a31bf19cb78eee321f51a24f91b18f0400f5a
Signed-off-by: Nicholas Schoenfeld <nschoenfeld@iol.unh.edu>
(cherry picked from commit 8e2f07edb297daaf087d8c205f46259e3ca0422d)
-rw-r--r-- | src/booking/views.py | 3 |
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( |