From 7e19d4cada0b036b23bb469920b2e5f55824a8fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Fri, 25 Nov 2016 15:46:36 +0100 Subject: [PATCH] fix copy past error --- proposals/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/views.py b/proposals/views.py index 8dc8c81..3ce0504 100644 --- a/proposals/views.py +++ b/proposals/views.py @@ -107,7 +107,7 @@ def talk_list(request): if data['scheduled'] != None: talks = talks.filter(start_date__isnull=not data['scheduled']) if data['materials'] != None: - talks = talks.filter(start_date__isnull=not data['materials']) + talks = talks.filter(materials__isnull=not data['materials']) # Action action_form = TalkActionForm(request.POST or None, talks=talks, site=get_current_site(request)) if not is_orga(request, request.user):