We have a Wagtail site where various people contribute to a news item before its published and the person who creates the page is not necessarily the main author. I'm looking for way to edit the Page.owner
in the Wagtail admin.
In the model class I've added:
content_panels = Page.content_panels + [
...
FieldPanel('owner')
]
Which shows all the site's users in a dropdown but this doesn't get saved. I was wondering if there was a more 'Wagtail' way of doing this, aside from overriding the save()
definition.