diff options
Diffstat (limited to 'exam/models.py')
-rw-r--r-- | exam/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/exam/models.py b/exam/models.py index ea60f17..8fe803d 100644 --- a/exam/models.py +++ b/exam/models.py @@ -62,6 +62,9 @@ class Quiz(models.Model): # Description of quiz. description = models.CharField(max_length=256) + class Meta: + verbose_name_plural = "Quizzes" + def __unicode__(self): desc = self.description or 'Quiz' return '%s: on %s for %d minutes'%(desc, self.start_date, self.duration) |