Closed HaddadJoe closed 1 year ago
I'm sorry, but we cannot really comment on other third-party-apps (like django-nested-inlines).
@sehmaschine I understand that but this is an issue with grappelli as uninstalling it from the installed apps creates no issues with the same configuration. Are you saying this integrations with other popular third party libraries won't be supported? Would you be open to PRs if these gets fixed by the community?
Other third party libraries can (or cannot) integrate with grappelli. It is mainly their choice. And I know that this is not a very satisfying situation ... but it is what it is.
I think a PR should go to django-nested-inlines.
Thanks for maintaining that great project! I'm running into some weird behavior when trying to run/integrate a multiple layer nested admin with grappelli.
here's the dummy models I have. Nothing too fancy, pretty straightforward nested models. Note that the Article has two foreign key referencing it. One from the image and one from the paragraph models.
Here's how my admin looks without trying to rearrange the nested inlines. Also nothing too fancy here pretty straightforward, just note that article is already an inline of sections (which is an inline of table of content)
Here's how things look on the admin UI
Now as you might have guessed, my goal is to rearrange the inlines image and paragraph under the designated fieldsets for each category. When uncommentting the classes to try to rearrange them some weird behavior happen. here's a screenshot
As you can see the sections have been rearranged correctly but as a consequence:
Image Data
andParagraph Data
have disappeared.Would appreciate any help or directions, happy to contribute if I can help!