Ajout fiche indemnité pour superviseur

This commit is contained in:
Claude Paroz 2023-07-10 12:44:03 +02:00
parent 820f7a3254
commit f6cc953014
4 changed files with 26 additions and 6 deletions

View file

@ -570,6 +570,14 @@ class MentorCompensationPdfForm(CompensationPDFForm):
super().__init__(out)
class SupervisorCompensationPdfForm(MentorCompensationPdfForm):
mandat_template = "Supevision de {student_civility} {student_fullname}, classe {klass}"
def __init__(self, out, student):
super().__init__(out, student)
self.expert = student.supervisor
class EntretienProfCompensationPdfForm(CompensationPDFForm):
mandat_type = CompensationPDFForm.EXPERT_MANDAT
mandat_template = "Expert·e aux examens finaux"