How to add RichTextField to models.Model in mezzanine?
1 answer
You can use it on the interface. RichText is an abstract model that you just inherit from.
Example:
class Article(RichText):
... your article fields go here ...
Now your article model will have a "content" field inherited from RichText and a set of its own fields.
I hope this helps.
+2
source to share