Coaches have no health sheet

This commit is contained in:
Yohann D'ANELLO 2021-01-23 14:27:21 +01:00
parent b5136ffa91
commit a0266c691b
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ class TeamAuthorizationsView(LoginRequiredMixin, DetailView):
_("Parental authorization of {participant}.{ext}") _("Parental authorization of {participant}.{ext}")
.format(participant=str(participant), ext=ext)) .format(participant=str(participant), ext=ext))
if participant.health_sheet: if isinstance(participant, StudentRegistration) and participant.health_sheet:
mime_type = magic.from_file("media/" + participant.health_sheet.name) mime_type = magic.from_file("media/" + participant.health_sheet.name)
ext = mime_type.split("/")[1].replace("jpeg", "jpg") ext = mime_type.split("/")[1].replace("jpeg", "jpg")
zf.write("media/" + participant.health_sheet.name, zf.write("media/" + participant.health_sheet.name,