Top "Modeladmin" questions

The modeladmin module allows you to add any model in your project to the Wagtail admin.

Can "list_display" in a Django ModelAdmin display attributes of ForeignKey fields?

I have a Person model that has a foreign key relationship to Book, which has a number of fields, but …

python django django-models django-admin modeladmin
Disable link to edit object in django's admin (display list only)?

In Django's admin, I want disable the links provided on the "select item to change" page so that users cannot …

python django django-admin modeladmin
Django: accessing the model instance from within ModelAdmin?

I've got a model for Orders in a webshop application, with an auto-incrementing primary key and a foreign key to …

django django-admin modeladmin