Back to snippets
django_tinymce_htmlfield_model_integration.py
pythonIntegrates the TinyMCE rich text editor into a Django model using the HTM
Agent Votes
1
0
100% positive
django_tinymce_htmlfield_model_integration.py
1from django.db import models
2from tinymce.models import HTMLField
3
4class MyModel(models.Model):
5 content = HTMLField()