diff --git a/core/models.py b/core/models.py index 5f6db84f..a6fd2972 100644 --- a/core/models.py +++ b/core/models.py @@ -121,7 +121,7 @@ class Timer(models.Model): class Meta: default_permissions = ('view', 'add', 'change', 'delete') - ordering = ['active', '-start'] + ordering = ['-active', '-start', '-end'] def __str__(self): return self.name or 'Timer #{}'.format(self.id)