Issue 69: TabularInline fails with admin
Status:  New
Owner: ----
Reported by markus.t...@gmail.com, Feb 12, 2010
I use this for menu items (fk to self, to get levels)

I have a class MenuItemInline(admin.TabularInline) and use it in
class MenuItemAdmin(admin.ModelAdmin) like inlines = [ MenuItemInline ]

Problem is that the menu items end up in reverse!

The relevant fields would be order and name, and I have
order_insertion_by=['order'] which may be redundant, I'm not sure.
I was thinking this bug might go away if I try to enforce ordering
that way.

As far as I could tell, the problem is that mptt makes space at the
same level for every new object, instead of figuring out a new place
where to create space, so it shifts the last inserted node with everyone
else, causing them to end up reversed.