vote up 0 vote down star

I'd like to get the values in class variables like list_display and list_filter from a view. Something like:

def some_view():
    print Order.list_display 
    ...
flag

64% accept rate

1 Answer

vote up 0 vote down check

So you want access to associated ModelAdmin objects from the model instance? How about this:

from django.contrib import admin
print admin.site._registry[Order].list_display
link|flag
Yes that was exactly what I was trying to do. Thanks. – orwellian Aug 19 at 13:40

Your Answer

Get an OpenID
or

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