Django admin orders models by their primary key by default, which can be undesirable on very large tables.
This shows how to disable any ordering on a model.
Note that this behavior is fixed in 1.4 trunk.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | from django.contrib import admin
from django.contrib.admin.views.main import ChangeList
from app.models import MyModel
class UnorderedChangeList(ChangeList):
def get_ordering(self):
return None, "asc"
class MyModelAdmin(admin.ModelAdmin):
def get_changelist(self, request, **kwargs):
"""
Returns the ChangeList class for use on the changelist page.
"""
return UnorderedChangeList
admin.site.register(MyModel, MyModelAdmin)
|
More like this
- Serializer factory with Django Rest Framework by julio 5 months, 3 weeks ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 6 months, 1 week ago
- Help text hyperlinks by sa2812 7 months, 1 week ago
- Stuff by NixonDash 9 months, 2 weeks ago
- Add custom fields to the built-in Group model by jmoppel 11 months, 2 weeks ago
Comments
Please login first before commenting.