diff --git a/exhibits/models.py b/exhibits/models.py index 71b554a..89e5cbc 100644 --- a/exhibits/models.py +++ b/exhibits/models.py @@ -85,20 +85,17 @@ class ExhibitPage(Page): ] content_panels = Page.content_panels + [ - FieldPanel('body', classname='full'), - FieldPanel('cover_image', classname='full'), - FieldPanel('hero_image', classname='full'), - MultiFieldPanel([InlinePanel('authors', label='Author', heading='Author(s)')]), - MultiFieldPanel( - [ - InlinePanel( + MultiFieldPanel([ + FieldPanel('cover_image'), + FieldPanel('hero_image'), + ], heading='Images'), + FieldPanel('body', classname='collapsed'), + InlinePanel('authors', heading='Author(s)'), + InlinePanel( 'other_exhibits', - label='Other Exhibits', heading='Other Exhibits', max_num=3, ) - ] - ), ] api_fields = [