[Django]-Using Rich Text Editor in Django admin with tinymice

3👍

Try this: https://github.com/aljosa/django-tinymce – It’s a tinymce module especially for django. You use it like this:

in a models.py:

from tinymce.models import HTMLField

class MyModel(models.Model):
    text = HTMLField()

And it works in the django admin too.

Leave a comment