From: Jan Szejko Date: Thu, 5 Apr 2018 08:43:45 +0000 (+0200) Subject: fix condition for "remind me" button X-Git-Url: https://git.mdrn.pl/prawokultury.git/commitdiff_plain/eea5b90aacd58fa81e569c15a018c0aa29b4560f fix condition for "remind me" button --- 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: