Add EDE convocation form

This commit is contained in:
Claude Paroz 2018-01-26 18:19:16 +01:00
parent 1f49b198ec
commit ffb54c9f78
9 changed files with 207 additions and 2 deletions

View file

@ -166,7 +166,11 @@ class Interview(models.Model):
def __str__(self):
return '{0} : {1}/{2} - ({3}) -salle:{4}-{5}'.format(
django_format(self.date, "l j F Y à H\hi"),
self.date_formatted,
self.teacher_int or '?', self.teacher_file or '?',
self.status, self.room, self.candidat or '???'
)
@property
def date_formatted(self):
return django_format(self.date, "l j F Y à H\hi")