From 9e885153c2f14e0ec8d0d06a91570a8d859ae797 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 29 Apr 2021 14:10:38 +0200 Subject: [PATCH] We can select teams for the final tournament --- apps/participation/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/participation/forms.py b/apps/participation/forms.py index cf6ac6f..545838e 100644 --- a/apps/participation/forms.py +++ b/apps/participation/forms.py @@ -67,7 +67,7 @@ class ParticipationForm(forms.ModelForm): """ class Meta: model = Participation - fields = ('tournament',) + fields = ('tournament', 'final',) class MotivationLetterForm(forms.ModelForm):