1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-29 21:11:10 +02:00

Update bareme

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2024-03-24 19:19:55 +01:00
parent 4f129280c3
commit 3465da4c36
3 changed files with 67 additions and 58 deletions

View File

@ -897,13 +897,13 @@ class Note(models.Model):
defender_oral = models.PositiveSmallIntegerField(
verbose_name=_("defender oral note"),
choices=[(i, i) for i in range(0, 17)],
choices=[(i, i) for i in range(0, 21)],
default=0,
)
opponent_writing = models.PositiveSmallIntegerField(
verbose_name=_("opponent writing note"),
choices=[(i, i) for i in range(0, 10)],
choices=[(i, i) for i in range(0, 11)],
default=0,
)
@ -915,7 +915,7 @@ class Note(models.Model):
reporter_writing = models.PositiveSmallIntegerField(
verbose_name=_("reporter writing note"),
choices=[(i, i) for i in range(0, 10)],
choices=[(i, i) for i in range(0, 11)],
default=0,
)