Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WISiWYG with uploading pictures: Django way

I'm trying to integrate TinyMCE or CKEditor into Django, but I have no idea how to manage uploading pictures. I've been searching and found some django apps, but they won't work with my Django version (1.1.1), buggy and not maintained.

Maybe I missed something? Can you please give me a step-by-step guide how to add WYSIWYG with uploading into django form?

like image 850
Valentin Golev Avatar asked Mar 18 '10 10:03

Valentin Golev


2 Answers

Use TinyMCE or CKEditor with django-filebrowser.

Description from the official site:

The FileBrowser is an extension to the Django Admin-Interface in order to

  • browse directories on your server and upload/delete/edit/rename files.
  • include images/documents to your models/database using the FileBrowseField.
  • select images/documents for TinyMCE and CKEditor.
like image 55
Leonid Shvechikov Avatar answered Sep 30 '22 10:09

Leonid Shvechikov


Try this:

https://pypi.python.org/pypi/Django-tinymce-filebrowser

Its allow to manage images and files from tinyMCE

like image 31
Alex Isayko Avatar answered Sep 30 '22 12:09

Alex Isayko