This issue on Github essentially sums up what I'm trying to do. I have a custom Page model called TeamMember, which is used to define members of a team. As a result, I'd like to rename/relabel the page "title" to be "name" in the Admin, and have that field be used for the Wagtail "title".
What is the preferred method of doing this? I'm assuming I should add a new model field called "name" and override the TeamMember .save() method to have the "title" default to the "name" of the team member.
Am I on the right track here? Or is there a different / better way to do this?