views:

18

answers:

0

When displaying an inline for a model, if there's a large number of inlines, the change page then loads slowly, and can be hard to navigate through all of them. I'm already using an inline-collapsing trick (found on DjangoSnippets, but the search there is not working so I can't share the link here), but still isn't easy to browse since they are named alike (mostly diferentiates in numbers) and all inlines are still loaded.

I need some kind of paginator for the inlines, and also that this paginator shows at first the most interesting inlines for the current object being edited, like specifying ordering for the onlines only (not the default ordering used in other areas of the app).

UPDATE: The inlines are all instances of one child related class.