Added convoc/confirm dates for student examination

This commit is contained in:
Claude Paroz 2018-04-23 15:14:36 +02:00
parent 8da961fdc5
commit d3d8d1dfc5
6 changed files with 44 additions and 7 deletions

View file

@ -260,8 +260,9 @@ class Student(models.Model):
last_appointment = models.DateField(blank=True, null=True)
room = models.CharField('Salle', max_length=15, blank=True)
mark = models.DecimalField('Note', max_digits=3, decimal_places=2, blank=True, null=True)
date_soutenance_mailed = models.DateTimeField("Convoc. env.", blank=True, null=True)
date_confirm_received = models.DateTimeField("Récept. confirm", blank=True, null=True)
# ============== Fields for examination ======================
support_tabimport = True
class Meta: