1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-08-07 02:39:44 +02:00

Store the BBB link in the Pool model

This commit is contained in:
Yohann D'ANELLO
2021-01-21 17:55:20 +01:00
parent 56ad352e64
commit 35042f077f
5 changed files with 87 additions and 50 deletions

View File

@@ -143,7 +143,7 @@ class SolutionForm(forms.ModelForm):
class PoolForm(forms.ModelForm):
class Meta:
model = Pool
fields = ('tournament', 'round', 'juries',)
fields = ('tournament', 'round', 'bbb_code', 'juries',)
widgets = {
"juries": forms.CheckboxSelectMultiple,
}