From 0f019dfe97f7ad02cc6d96dc0664936f70356ffa Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 17 Jul 2014 00:01:43 +0200 Subject: [PATCH] fix script title again --- 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 2d354199..816a63d0 100644 --- a/teleforma/exam/models.py +++ b/teleforma/exam/models.py @@ -202,7 +202,7 @@ class Script(BaseResource): @property 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.author.first_name) + ' ' + unicode(self.author.last_name), unicode(self.date_added)]) def __unicode__(self): -- 2.39.5