How does one check to see if a modeladmin exists for a given model?
modeladmins are created by registering a model with the admin.site object. how can one check the site object to see which models have been registered, and with which admin_class?
|
How does one check to see if a modeladmin exists for a given model? modeladmins are created by registering a model with the admin.site object. how can one check the site object to see which models have been registered, and with which admin_class? |
||||
|
|
|
Interesting question, which provoked me to do a little digging. Once the admin classes have been registered, they are stored in an attribute of the So if you have an admin.py like this:
then once that has actually been imported - usually by the
and you would get the ModelAdmin object for MyModel by using the model itself as the key:
|
|||
|