[Answered ]-Django grappelli, filebrowser and Tiny MCE insert image dialog

1👍

The current grappelli version is 2.1. It should work without problems with django 1.2.1 and the current filebrowser version! I think the screenshots on the google code site come from an older version, that had bookmark support etc included, but was removed from the actual version because this functionality (also dashboard etc) should be handled through admin-tools now! As you maybe already now there’s grappelli-admin-tools (http://bitbucket.org/fetzig/grappelli-admin-tools/overview) which already enables you to customize your index page and the bookmarks functionality should be moved there as well! Make sure to read the install instructions carefully: http://bitbucket.org/fetzig/grappelli-admin-tools/wiki/Home (do not forget to execute the python scripts at the end!) tinymce/filebrowser is working for me with this combination….

1👍

I managed to get the admin site to look like the django simple admin interface by not setting my admin media prefix to ‘/media/grappelli/’. Just left it as ‘/static/admin/’ and it didn’t break anything seemingly, I’ve not been able to get the ‘choose’ to work either way though.

0👍

I was running into similar issues, but following Christopher’s advice of changing the ADMIN_MEDIA_PREFIX worked like a charm. All I did was the following:

old:

 ADMIN_MEDIA_PREFIX = STATIC_URL + 'grappelli/' 

new:

 ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/ 

Leave a comment