Darwin Tech
Darwin Tech

Reputation: 18929

Django image insertion in Admin

I am building a small side project - a simple news site. I want to use the Django Admin for uploading articles and allow access to non-coders so as they can publish articles a la Wordpress or such. I have added some functionality to the admin, first trying out TinyMCE and Dojo rich text editors. However, these do not come with the ability to insert an image into an article from a file (just urls).

I really only want some light text formatting in the text area plus the ability to upload and insert images from the users's harddrive directly into the article. Is there a simple way to achieve this?

Upvotes: 2

Views: 260

Answers (1)

Yasel
Yasel

Reputation: 3118

If you are already using django-tinymce, you can integrate django-filebrowser with it. See django-tinymce's documentation. There is also a commercial choice which looks good, but I have never tested it.

Upvotes: 3

Related Questions