1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-08-04 23:03:46 +02:00

Profile list

This commit is contained in:
Yohann D'ANELLO
2020-04-30 21:07:12 +02:00
parent f70f6f16f0
commit 03f47f996b
8 changed files with 124 additions and 52 deletions

View File

@@ -127,10 +127,10 @@ class TFJMUser(AbstractUser):
role = models.CharField(
max_length=16,
choices=[
("0admin", _("admin")),
("1volunteer", _("organizer")),
("2coach", _("coach")),
("3participant", _("participant")),
("0admin", _("Admin")),
("1volunteer", _("Organizer")),
("2coach", _("Coach")),
("3participant", _("Participant")),
]
)