Skip to content

Commit

Permalink
reverse category ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Bächler committed Apr 23, 2012
1 parent a01dc1b commit d35b6ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elephantblog/models.py
Expand Up @@ -25,7 +25,7 @@ class Category(models.Model, translations.TranslatedObjectMixin):
class Meta:
verbose_name = _('category')
verbose_name_plural = _('categories')
ordering = ['-ordering',]
ordering = ['ordering',]

objects = translations.TranslatedObjectManager()

Expand Down

0 comments on commit d35b6ea

Please sign in to comment.