views:

289

answers:

2

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

+2  A: 

I have used Grappelli several places and suggest using it, if you are using admin for anything more than a "database debugging" purpose.

From django 1.1.1 onwards, you can create multiple instances of admin, so generally, I keep the main admin to examine the data as it is, and another instance of it for using purpose, with grappelli.

A minor issue is that,

On the dev server, it is hard to ask django to use a different admin media folder, and the easiest way is to use the command line parameter, as it is documented.

Lakshman Prasad
+1, i think it's a nice idea especially for debugging to be able to run both, never thought of that before!
lazerscience
+2  A: 

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

The current grappelli version 2.1 is working for 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!

In the acutal version grappelli also has a nicer html/css framework which enables you more easily to use their styles/ui elements in your own templates. Have a look at http://www.vonautomatisch.at/grappelli-UI/ for that (it's not totally valid for the actual versionbut gives you a small impresseion of what to expect!)

Accoring 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)!

lazerscience