Top "Django-admin" questions

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

Resize fields in Django Admin

Django tends to fill up horizontal space when adding or editing entries on the admin, but, in some cases, is …

python django django-models django-admin
is there a simple way to get group names of a user in django

I tried following Code with the help of the django.contrib.auth.User and django.contrib.auth.Group for g …

python django django-admin
model not showing up in django admin

I have ceated several django apps and stuffs for my own fund and so far everything has been working fine. …

django django-admin
How to show all fields of model in admin page?

here is the models page In this picture, only the title shows up on here, I used: def __unicode__(self): …

django-models django-admin
Django Admin CSS missing

I've been messing around with the new collectstatic command and have got it working for my normal pages. That is …

django django-admin
Can I make an admin field not required in Django without creating a form?

Every time I enter in a new player in the Admin portion of Django I get an error message that …

python django django-models django-admin django-forms
Django "xxxxxx Object" display customization in admin action sidebar

I would like to change the default behavior of how the admin recent changes sidebar displays the name of "objects" …

django django-models django-admin
Tying in to Django Admin's Model History

The Setup: I'm working on a Django application which allows users to create an object in the database and then …

django django-models django-admin
How to hide some fields in django-admin?

class Book(models.Model): title = models.CharField(..., null=True) type = models.CharField(...) author = models.CharField(...) I have a simple class …

django django-admin
Can you change a field label in the Django Admin application?

As the title suggests. I want to be able to change the label of a single field in the admin …

python django django-admin django-forms