Add a default ordering for quotas

This commit is contained in:
Raphael Michel
2018-04-08 19:14:38 +02:00
parent 56ac037128
commit f1d4a686b1

View File

@@ -938,6 +938,7 @@ class Quota(LoggedModel):
class Meta:
verbose_name = _("Quota")
verbose_name_plural = _("Quotas")
ordering = ('name',)
def __str__(self):
return self.name