From 30db16cb810215dd391ef7ea9541b193c585c236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 2 Sep 2017 10:38:15 +0200 Subject: [PATCH] homenews: do not require homepage text --- tabellio/pfbviews/homenews.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabellio/pfbviews/homenews.py b/tabellio/pfbviews/homenews.py index 7ff74a6..8079225 100644 --- a/tabellio/pfbviews/homenews.py +++ b/tabellio/pfbviews/homenews.py @@ -14,7 +14,7 @@ from tabellio.pfbviews import MessageFactory as _ class IHomeNews(form.Schema): picture = NamedImage(title=_(u'Picture'), required=False) - homepage_text = RichText(title=_(u'Homepage Text'), required=True) + homepage_text = RichText(title=_(u'Homepage Text'), required=False) text = RichText(title=_(u'Text'), required=False) on_homepage = schema.Bool(title=_(u'Include on homepage'), default=True)