Changing order in which inlines are displayed in Admin

2009-11-12 Thread Joseph Wakeling
Hello all, A little query I haven't been able to find an answer to in docs or through Google. I've got a little app on my site to create menus -- it's adapted (updated to latest Django) from the menu app described at rossp.org. Anyway, here are the classes defined in admin.py: #

Re: Changing order in which inlines are displayed in Admin

2009-11-12 Thread joshuakarjala
checkout - http://www.djangosnippets.org/snippets/1489/ I have used this in one project successfully - if you want drag'n'drop Otherwise just add: class Meta: ordering = ('order',) to you model - and the admin should adhere to the "order" On Nov 12, 3:16 pm, Joseph Wakeling wrote: >