Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2024-03-03 16:18:04 +01:00
parent f95309be08
commit 71e33b2177
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 2 additions and 2 deletions

View File

@ -621,9 +621,9 @@ class TournamentExportCSVView(VolunteerMixin, DetailView):
'Prénom': registration.user.first_name,
'Email': registration.user.email,
'Genre': registration.get_gender_display() if isinstance(registration, StudentRegistration)
else 'Encandrant⋅e',
else 'Encadrant⋅e',
'Date de naissance': registration.birth_date if isinstance(registration, StudentRegistration)
else 'Encandrant⋅e',
else 'Encadrant⋅e',
})
return resp