Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django-tinymce full featured in admin

I set up django-tinymce to work with admin just like the docs described

in settings

INSTALLED_APPS = [ ..., 'tinymce',]

in models I added

from tinymce.models import HTMLField
content = HTMLField()

and in urls

urlpatterns = [ ...., url(r'^tinymce/', include('tinymce.urls')),]

But I can not figure out how to add icons and plugins ! I did a lot of research and I could not find anything useful.

I need a Full Featured editor.

like image 803
Zeyad Obaia Avatar asked Dec 21 '16 23:12

Zeyad Obaia


1 Answers

TINYMCE is great. But at times, it fails to send input back to the server.

One of the alternatives to TINYMCE is django-summernote, which is easy to setup and use.

Check django-summernote here: https://github.com/summernote/django-summernote

like image 90
Pulkit Pahwa Avatar answered Sep 29 '22 06:09

Pulkit Pahwa