move cover in main panel

This commit is contained in:
bkfox 2017-01-08 22:38:34 +01:00
parent 1c520c145e
commit c6723bf689

View File

@ -283,13 +283,13 @@ class Publication(Page):
content_panels = [ content_panels = [
MultiFieldPanel([ MultiFieldPanel([
FieldPanel('title'), FieldPanel('title'),
ImageChooserPanel('cover'),
FieldPanel('summary'), FieldPanel('summary'),
FieldPanel('body', classname='full'), FieldPanel('body', classname='full'),
], heading=_('Content')) ], heading=_('Content'))
] ]
promote_panels = [ promote_panels = [
MultiFieldPanel([ MultiFieldPanel([
ImageChooserPanel('cover'),
FieldPanel('tags'), FieldPanel('tags'),
FieldPanel('focus'), FieldPanel('focus'),
], heading=_('Content')), ], heading=_('Content')),