Top "Django-admin" questions

Django's built-in, automatic admin interface (django.

Django - How to specify which field a validation fails on?

I have this model I'm showing in the admin page: class Dog(models.Model): bark_volume = models.DecimalField(... unladen_speed = …

django django-models django-admin
Linking to the django admin site

Very basic question, but I'm having trouble tracking down the answer on the web. I have a template, which I …

django django-admin django-templates django-urls
How to change the Django admin filter to use a dropdown instead of list?

If, for a field that you want to filter by, you have more than ~10 values, the filtering sidebar starts to …

django django-admin
list_display - boolean icons for methods

When defining the list_display array for a ModelAdmin class, if a BooleanField or NullBooleanField is given the UI will …

django django-admin
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
Foreign keys in django admin list display

If a django model contains a foreign key field, and if that field is shown in list mode, then it …

django django-admin foreign-keys
Django admin listview Customize Column Name

Ok so I have a custom django admin built from a Author Model: class AuthorAdmin(admin.ModelAdmin): """ Author Admin """ form = …

django django-forms django-admin
Remove default apps from Django-admin

By default, in Django-admin there is Users, Groups, and Sites apps. How can I remove Groups and Sites? I tried …

python django django-admin
Django admin, hide a model

At the root page of the admin site where registered models appear, I want to hide several models that are …

django django-admin
For a django model, how can I get the django admin URL to add another, or list objects, etc.?

As much as I love the django documentation, the section on bookmarklets in the admin is strangely vague. My question …

django django-admin django-urls