Is there a way to force a field type for a Django model?
I have a model field that's a textarea and when it renders to HTML using the modelform, is outputs the text between:
<textarea>...</textarea>
Is there any way to force django to place the text between two div tags like:
<div>...</div>
The only reason I ask, is because I'd like to use bootstrap-wysiwyg, and there is a limitation to using tags.