From 287401afb887b38f747bc6b0d832cedfa8562d07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Tue, 17 Oct 2017 11:49:12 +0200 Subject: [PATCH] fix confirmation filter --- cfp/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfp/forms.py b/cfp/forms.py index 279cb22..08f1faa 100644 --- a/cfp/forms.py +++ b/cfp/forms.py @@ -31,7 +31,7 @@ CONFIRMATION_CHOICES = [ CONFIRMATION_VALUES = [ ('waiting', None), ('confirmed', True), - ('desisted', False), + ('cancelled', False), ]