From: Guillaume Pellerin Date: Wed, 16 Jul 2014 21:59:38 +0000 (+0200) Subject: fix script title X-Git-Tag: 1.1~422 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=4955b03f0d8386dd2bd4fdb5f8756ff112121c13;p=teleforma.git fix script title --- diff --git a/teleforma/exam/models.py b/teleforma/exam/models.py index 144d93a4..59af3ebb 100644 --- a/teleforma/exam/models.py +++ b/teleforma/exam/models.py @@ -203,7 +203,7 @@ class Script(BaseResource): def title(self): return ' - '.join([self.course.title, self.type.name, _("Session") + ' ' + self.session, unicode(self.author.first_name) + ' ' + unicode(self.author.first_name), - unicode(self.date_created)]) + unicode(self.date_added)]) def __unicode__(self): return unicode(self.title)