From 8f5d475dd4382486299d8e5bcc920a10b58275c4 Mon Sep 17 00:00:00 2001 From: Konstantin Kostov Date: Sat, 23 Mar 2024 16:36:18 +0100 Subject: [PATCH] make intro a larger field --- blog/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/models.py b/blog/models.py index dc30cff..31e23a3 100644 --- a/blog/models.py +++ b/blog/models.py @@ -48,7 +48,7 @@ class BlogPageTag(TaggedItemBase): class BlogPage(Page): date = models.DateField("Post date") - intro = models.CharField(max_length=250) + intro = models.TextField() body = StreamField( BlogPostBlock(), blank=True,