I want to order models in my Django admin interface. The default is alphabetical ordering of models within apps.
I would like to avoid creating extra packages etc, etc, or having to alter Django itself.
Can this be done by overriding Django admin templates, or some other, lightweight way?
EDIT:
I dont want to order final items, like a list of todos.
I want to order different models in index page of admin. E.g. todos come before cars.