From 3f46e23588692b31ca7f5a5185a1da4182aa1ee7 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 11 Mar 2021 16:57:23 +0100 Subject: [PATCH] Email address is no more required --- apps/participation/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/participation/views.py b/apps/participation/views.py index 01257f1..e82df54 100644 --- a/apps/participation/views.py +++ b/apps/participation/views.py @@ -179,7 +179,6 @@ class TeamDetailView(LoginRequiredMixin, FormMixin, ProcessFormView, DetailView) # their health sheet, they confirmed their email address and under-18 people sent their parental authorization. context["can_validate"] = team.students.count() >= 4 and team.coaches.exists() and \ team.participation.tournament and \ - all(r.email_confirmed for r in team.students.all()) and \ all(r.photo_authorization for r in team.participants.all()) and \ (team.participation.tournament.remote or all(r.health_sheet for r in team.students.all() if r.under_18)) and \