Top "Django-admin" questions

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

Ordering admin.ModelAdmin objects

Let's say I have my pizza application with Topping and Pizza classes and they show in Django Admin like this: …

django django-admin
How do I add a custom column with a hyperlink in the django admin interface?

I have a django admin interface and in the model listing I want a custom column that will be a …

django django-admin
Filter ManyToMany box in Django Admin

I have a object with a many-to-many relation with another object. In the Django Admin this results in a very …

django django-admin django-forms many-to-many django-widget
Changing password in Django Admin

I recently created the admin.py based in the Django Project Document: https://docs.djangoproject.com/en/dev/topics/auth/…

python django django-admin django-1.5
one-to-many inline select with django admin

I have a standard many-to-one relationship set up. There are a bunch of fields, but for our purposes here, the …

python django django-models django-admin
Django: How to get current user in admin forms

In Django's ModelAdmin I need to display forms customized according to the permissions an user has. Is there a way …

django django-forms django-admin username
Django admin - inline inlines (or, three model editing at once)

I've got a set of models that look like this: class Page(models.Model): title = models.CharField(max_length=255) class …

python django django-models django-admin inlines
How to check (in template) if user belongs to a group

How to check in template whether user belongs to some group? It is possible in a view which is generating …

python django django-admin django-permissions
Django Admin - Specific user (admin) content

I'm starting to organize a new project and let's say i'll have a few models like products and catalogs. I …

django permissions django-admin admin
Custom error message in Django admin actions

I've written custom admin actions that basically do QuerySet.update() for certain fields in the model. There are times when …

django django-models django-admin