I have django-bleach in my project. In models use:
class Post(models.Model):
title = models.CharField(max_length=255)
content_2 = HTMLField()
In settings.py:
BLEACH_DEFAULT_WIDGET = 'wysiwyg.widgets.WysiwygWidget'
How to write the correct path to process the bleach for HTMLField in BLEACH_DEFAULT_WIDGET ?