Make django-wysiwyg work on django pages
问题 I have a TextField for description on one of my forms, and i want to apply reich text editor for that so tried to use this package, but i am unable to make it work below are my settings settings.py INSTALLED_APPS = ( ..... ..... # Description Rich text editor settings 'tinymce', 'django_wysiwyg', ) DJANGO_WYSIWYG_FLAVOR = "tinymce" template.html {% extends "base.html" %} {% load wysiwyg %} {% wysiwyg_setup %} <form enctype="multipart/form-data" action="{% url 'product_create' %}" method="post