Hi
I have a "Person" Model which has a one-to-many Relations to other Models, for instance Address. I want to edit these models on the same page as Person, which I can already do via inlines. But I also want to change the order of the fields.
I want the (inline) field "Address" to be the third item in the list, but for
fields ('first_name', 'last_name', 'Adress_Inline', 'nationality' etc..) I get this: PersonAdmin.fields' refers to field 'Address_Inline' that is missing from the form.
Is there a way to change the order of the fields and get certain inline-Fields between 'regular' Model fields?
Thank You!