From eea5b90aacd58fa81e569c15a018c0aa29b4560f Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Thu, 5 Apr 2018 10:43:45 +0200 Subject: [PATCH] fix condition for "remind me" button --- prawokultury/context_processors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prawokultury/context_processors.py b/prawokultury/context_processors.py index b944366..60ff46c 100644 --- a/prawokultury/context_processors.py +++ b/prawokultury/context_processors.py @@ -12,7 +12,7 @@ def registration_url(request): if speaker_form.started and not speaker_form.closed: url = reverse("contact_form", args=["register-speaker"]) label = _('Registration') - elif speaker_form.closed and not registration_form.started: + elif not speaker_form.started or (speaker_form.closed and not registration_form.started): url = reverse("contact_form", args=["remind-me"]) label = _('Remind me') else: -- 2.20.1