Hello, I have two model objects, Section and Page. Each Page is mapped to a Section through a regular ForeignKey field. On the Section edit detail display in the Django admin app, I'd like to list the Page objects belonging to that Section and having a few fields be editable from there.
However, it seems to me that there is no way to control which fields are displayed when editing an object inline through its ForeignKey relation. At first, I thought only fields marked core=True would be displayed, but that does not seem to be the case. In fact, going through the docs I couldn't find a way to achieve my goal, so I am wondering if this is currently supported at all? If not, I think it would be a useful feature addition to be able to do this. Thanks, Morten

