From 4955b03f0d8386dd2bd4fdb5f8756ff112121c13 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 16 Jul 2014 23:59:38 +0200 Subject: [PATCH] fix script title --- teleforma/exam/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5