From 1171da048e2ad9e40a59733e29e12163ac448c8b Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 10 Dec 2018 01:11:03 +0100 Subject: [PATCH] Add conferences to Conference view --- teleforma/views/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teleforma/views/core.py b/teleforma/views/core.py index 16f1bf75..e2400af7 100644 --- a/teleforma/views/core.py +++ b/teleforma/views/core.py @@ -456,6 +456,7 @@ class ConferenceView(DetailView): context['access_error'] = access_error context['message'] = contact_message context['periods'] = get_periods(self.request.user) + context['conferences'] = all_conferences(self.request) return context @jsonrpc_method('teleforma.stop_conference') -- 2.39.5