Login

Disable ordering in the admin for a model

Author:
flupke
Posted:
October 26, 2011
Language:
Python
Version:
1.3
Score:
1 (after 1 ratings)

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

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months, 1 week ago
  5. Help text hyperlinks by sa2812 12 months ago

Comments

Please login first before commenting.