From 7321f23d11545631c0ed9237bc51898cd2142f70 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 1 Aug 2014 21:34:03 +0200 Subject: [PATCH] quota order --- 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 75af0ae1..55980249 100644 --- a/teleforma/exam/models.py +++ b/teleforma/exam/models.py @@ -126,7 +126,7 @@ class Quota(models.Model): class Meta(MetaCore): verbose_name = _('Quota') verbose_name_plural = _('Quotas') - ordering = ['date_start'] + ordering = ['corrector'] def __unicode__(self): return ' - '.join([unicode(self.corrector), self.course.title, str(self.value)]) -- 2.39.5