From 631afe887fc3b83c7ec372c4e0d93ef4fdaf3f26 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 21 Nov 2014 16:29:46 +0100 Subject: [PATCH] fix time condition --- teleforma/views/pro.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/views/pro.py b/teleforma/views/pro.py index dee3e555..5c2c457e 100644 --- a/teleforma/views/pro.py +++ b/teleforma/views/pro.py @@ -177,9 +177,9 @@ class SeminarView(SeminarAccessMixin, DetailView): messages.info(self.request, _("You have successfully terminated your e-learning seminar. A training testimonial will be available as soon as the pedagogical team validate all your answers (48h maximum).")) elif progress < 100 and validated and self.template_name == 'teleforma/seminar_detail.html': messages.info(self.request, _("All your answers have been validated. You can now read the corrected documents (step 5).")) - elif progress == 100 and validated and self.template_name == 'teleforma/seminar_detail.html': + elif progress == 100 and validated and seminar_time >= 0 and self.template_name == 'teleforma/seminar_detail.html': messages.info(self.request, _("You have successfully terminated all steps of your e-learning seminar. You can now download your training testimonial below.")) - if progress == 100 and validated and seminar_time <= 0: + if progress == 100 and validated and seminar_time < 0: messages.info(self.request, _("Your connexion time is not sufficient. In order to get your testimonial, you have to work at least the time required for this seminar.")) return context -- 2.39.5