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

Add last degree field for coaches

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2024-01-20 18:26:52 +01:00
parent b35bebc7c2
commit a738a5a58d
5 changed files with 113 additions and 61 deletions

View File

@ -281,6 +281,14 @@ class CoachRegistration(ParticipantRegistration):
Specific registration for coaches.
They have a team and a professional activity.
"""
last_degree = models.CharField(
max_length=255,
default="",
verbose_name=_("most recent degree in mathematics, computer science or physics"),
help_text=_("Your most recent degree in maths, computer science or physics, "
"or your last entrance exam (CAPES, Agrégation,…)"),
)
professional_activity = models.TextField(
verbose_name=_("professional activity"),
)