I let a content type inherit from RichTextContent
and add a few fields, like a title.
class SimpleTextContent(RichTextContent):
title = models.CharField(max_length=20)
...
Unfortunately, in the Page Admin the text field will appear on top of the corresponding inline admin. But it would be nicer to have the title
appear first.
How can I change the order of the fields in a content type's inline admin?