Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What custom themes are there for Django Admin? [closed]

Tags:

Where can I find custom themes for Django's admin app, other than django-grappelli?

like image 337
ha22109 Avatar asked Mar 22 '10 13:03

ha22109


People also ask

Can we customize Django admin panel?

The Django admin is a powerful built-in tool giving you the ability to create, update, and delete objects in your database using a web interface. You can customize the Django admin to do almost anything you want.

Can we change Django admin theme?

To do so, you will have to change the project's settings.py . Find the TEMPLATES section and modify accordingly. To override the default template you first need to access the template you want to modify from the django/contrib/admin/templates/admin directory.

Is Django's admin interface customizable if yes then how?

In this article, we will discuss how to enhance Django-admin Interface. Let us create an app called state which has one model with the same name(state). When we register app to admin.py it shows like. Now lets' customize django admin according to available options.

Is Django admin good for production?

Django's Admin is amazing. A built-in and fully functional interface that quickly gets in and allows data entry is priceless. Developers can focus on building additional functionality instead of creating dummy interfaces to interact with the database.


1 Answers

There is a wiki chart displaying a large list of admin interfaces, with a contrast of features, maintenance, etc...

http://djangopackages.com/grids/g/admin-interface/

like image 135
Alvin Avatar answered Oct 07 '22 11:10

Alvin