Ajout champs suppl. pour export qualif ES

This commit is contained in:
Claude Paroz 2024-05-23 16:55:45 +02:00
parent ff11fa04ee
commit 81796a8e0c
2 changed files with 8 additions and 3 deletions

View file

@ -420,6 +420,9 @@ class Examination(models.Model):
class Meta:
verbose_name = "Examen"
def __str__(self):
return f"{self.get_type_exam_display()} pour {self.student}"
def missing_examination_data(self):
missing = []
if not self.date_exam: