vote up 0 vote down star

How can I make Django avoid calling ChangeList's get_query_set() method in file django.contrib.admin.views.main.py? I don't want to append any data, I want it to not call that method at all. Thanks.

flag

64% accept rate

1 Answer

vote up 0 vote down check

I guess you could always subclass (or monkeypatch) the ChangeList class and replace get_query_set() with a dummy. I can't work out why you'd want to do that though - it would mean you wouldn't get any data in the changelist page.

link|flag
Because I wanna filter the data myself (advanced search). Was hoping there was some solution without monkeypatching it. Thanks though. – orwellian Aug 19 at 22:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.