mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 13:12:17 +01:00 
			
		
		
		
	Raise error when a given tournament does not exist
This commit is contained in:
		@@ -377,7 +377,7 @@ class AuthorizationTemplateView(TemplateView):
 | 
			
		||||
                    or self.request.user.is_authenticated and self.request.user.registration.is_admin:
 | 
			
		||||
                context["registration"] = registration
 | 
			
		||||
        if "tournament_id" in self.request.GET and self.request.GET.get("tournament_id").isnumeric():
 | 
			
		||||
            if not Tournament.objects.filter(pk=self.request.get("tournament_id")).exists():
 | 
			
		||||
            if not Tournament.objects.filter(pk=self.request.GET.get("tournament_id")).exists():
 | 
			
		||||
                raise PermissionDenied("Ce tournoi n'existe pas.")
 | 
			
		||||
            context["tournament"] = Tournament.objects.get(pk=self.request.GET.get("tournament_id"))
 | 
			
		||||
        else:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user