mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-23 15:51:52 +00:00
17 lines
416 B
Python
17 lines
416 B
Python
from django.db import models
|
|
from django.utils.safestring import mark_safe
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class RichTextContent(models.Model):
|
|
text = models.TextField(_('text'), blank=True)
|
|
|
|
class Meta:
|
|
abstract = True
|
|
verbose_name = _('rich text')
|
|
verbose_name_plural = _('rich texts')
|
|
|
|
def render(self, **kwargs):
|
|
return mark_safe(self.text)
|
|
|