This commit is contained in:
bkfox
2024-04-30 19:36:34 +02:00
parent 53512d9dcf
commit 4b01a5217b
2 changed files with 4 additions and 10 deletions

View File

@ -1,7 +1,6 @@
import re
import bleach
from ckeditor_uploader.fields import RichTextUploadingField
from django.db import models
from django.urls import reverse
from django.utils import timezone as tz
@ -100,11 +99,7 @@ class BasePage(Renderable, models.Model):
null=True,
blank=True,
)
content = RichTextUploadingField(
_("content"),
blank=True,
null=True,
)
content = models.TextField(_("content"), blank=True, null=True)
objects = BasePageQuerySet.as_manager()