From 229ab6b0e6d4755715b50ddc75165bf7858586bf Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Thu, 11 Jul 2019 16:01:01 +0200 Subject: [PATCH] Add subtitle to instruments --- server/basicknowledge/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/basicknowledge/models.py b/server/basicknowledge/models.py index f51fa1af..af508c9a 100644 --- a/server/basicknowledge/models.py +++ b/server/basicknowledge/models.py @@ -4,7 +4,7 @@ from wagtail.core.fields import StreamField from wagtail.images.blocks import ImageChooserBlock from books.blocks import LinkBlock, VideoBlock, DocumentBlock, SectionTitleBlock, InfogramBlock, \ - GeniallyBlock, InstrumentTextBlock + GeniallyBlock, InstrumentTextBlock, SubtitleBlock from core.wagtail_utils import StrictHierarchyPage @@ -20,6 +20,7 @@ class BasicKnowledge(StrictHierarchyPage): ('section_title', SectionTitleBlock()), ('infogram_block', InfogramBlock()), ('genially_block', GeniallyBlock()), + ('subtitle', SubtitleBlock()), ], null=True, blank=True) LANGUAGE_COMMUNICATION = 'language_communication'