1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
from django.db import models
from django.utils.safestring import mark_safe
from django.utils.translation import ugettext_lazy as _
class RawContent(models.Model):
"""
Content type which can be used to input raw HTML code into the CMS.
The content isn't escaped and can be used to insert CSS or JS
snippets too.
"""
text = models.TextField(_('content'), blank=True)
class Meta:
abstract = True
verbose_name = _('raw content')
verbose_name_plural = _('raw contents')
def render(self, **kwargs):
return mark_safe(self.text)
|