Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django grappelli

Does anyone here use django-grappelli here ?

I would like to read some experience of developers or users, if there are common mistake to avoid or why you use or do not use grappelli.

Thanks for sharing

like image 706
dzen Avatar asked Jun 06 '10 13:06

dzen


People also ask

What is Django Grappelli?

Grappelli is a grid-based alternative/extension to the Django administration interface.

What is Django jazzmin?

Welcome to Jazzmin, intended as a drop-in app to jazz up your django admin site, with plenty of things you can easily customise, including a built-in UI customizer.

What is Django admin interface?

One of the most powerful parts of Django is the automatic admin interface. It reads metadata from your models to provide a quick, model-centric interface where trusted users can manage content on your site. The admin's recommended use is limited to an organization's internal management tool.

What is Django suit?

Django Suit is alternative theme/skin/extension for Django admin app (administration interface).


1 Answers

I'm using grappelli as well. I'd be content with django's normal admin, but if you need to present the backend to someone else grappelli is much more appealing.

The current grappelli version 2.1 is working quite good with django 1.2. The only problems you(sometimes) run into is that 3rd party apps have sometimes some problems, which you can solve in most cases quite easily with changing the custom templates they are coming with (in most cases it's just other names for css classes etc, sometimes there are some js incompatibilities as well, which you can solve easily!

The actual version of grappelli also has a nicer html/css framework which enables you to easily use their styles/ui elements in your own templates. Have a look at http://grappelliproject.com/ for that (it's not totally valid for the actual version but gives you a small impression on what to expect!)

According to the developers, grappelli should soon work together with the marvellous django-admin-tools,which offer you drop down menus within the admin and a customizable index dashboard! Installation is not quite complicated, just do not forget to pass the adminmedia folder to manage.py! All in all I think it's quite recommendable (also check out django-filebrowser and medman if you dont know them yet, which come from the same developers and work very well together with grappelli)!

like image 52
Bernhard Vallant Avatar answered Sep 28 '22 08:09

Bernhard Vallant