1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-12-10 14:27:51 +01:00

Solve bug in join tournament

This commit is contained in:
Maxime JUST
2025-12-08 09:01:17 +01:00
parent 73cb9b20e7
commit 41b8ac9de4
2 changed files with 2 additions and 1 deletions

View File

@@ -105,6 +105,7 @@ class ParticipationForm(forms.ModelForm):
),
'final',
)
self.helper.form_tag = False
class Meta:
model = Participation

View File

@@ -23,7 +23,7 @@ from django.utils.translation import gettext_lazy as _
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
PROJECT_DIR = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
ADMINS = [("Emmy D'Anello", "emmy.danello@animath.fr")]
ADMINS = [("Emmy D'Anello", "emmy.danello@animath.fr"), ("Maxime JUST", "maxime.just@ens-lyon.fr")]
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/