diff --git a/collection/games/models.py b/collection/games/models.py index 68a5fd1..804ed1e 100644 --- a/collection/games/models.py +++ b/collection/games/models.py @@ -11,6 +11,7 @@ class Console(Collection): return '%s' % self.name class Meta: + ordering = ('name',) verbose_name = _('console') verbose_name_plural = _('consoles') @@ -67,5 +68,6 @@ class Timeline(BaseTimeline): DEFAULT_CHOICE = Item.DEFAULT_CHOICE class Meta: + ordering = ('-date',) verbose_name = _('Timeline') verbose_name_plural = _('Timelines')