After trying various ways to have TinyMCE as editor for my HTML content in Django administration I finally get it to work with this tutorial - https://github.com/ITCase-django/django-tinymce-4.
However using this method I have to have Django 1.9 and "Grappelli" admin skin which I would rather avoid. I tried to remove it but it also removed TinyMCE.
I also tried using HTMLField()
from django-tinymce
package, but this way got very crude editor with only handful of options (bold, italics, lists and that was that).
Is there any "best-practice" to have Django (newest version) administration with full-fledged TinyMCE 4?
EDIT: After trying various options (like advanced theme with HTMLField()) I am back where I started with Grappelli theme. I guess I can put up with this theme for some time.