Django version 1.0.2 Django-tinymce trunk version My GOAL is to install tinymce to add a rich-text editor with a filebrowser image updater. I tried the JS way...like described in "Pratical Django application" book. I downloaded TinyMCE distribution and added the javascript code to the admin template change_form.html. In this way i have a text- field with the rich-text editor but i'm not able to obtain the filebrowser hook attached to the upload button of tinyMCE.
So i abandoned the direct Javascript way, and i tried to install django-tinymce apps. These are the steps: - downloaded django-tinymce and copied to the project directory. - modified project settings.py adding 'tinymce' in the APPLICATIONS. - modified URLS.PY adding the entry to manage tinymce/ with tinymce.urls - copied the js code to my media-root/ directory - modified tinymce/setting.py to set the right path for JS NOW what other steps i have to do? my goal is to obtain in the ADMIN interface a riche text field....in the simplest way.... i have to modufy my admin.py ? In the admin.py i have a class like this... class ArticleAdmin(admin.ModelAdmin): pass admin.site.register(Article, ArticleAdmin) Thank you in advance..... Marco --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---