What would be the Djangonic (?) way of handling the following situation: I have a set of objects that need to be presented to the user in some specified order not related to any data in the model (let's say the ordering is based on the editors whim and not by object name or published date)
The only way I see to do it is to add an IntegerField to hold a z-orderish value and then create views to allow the editors to set the order by moving the objects around. This seems like a common enough problem that it might be (or already is) handled directly by Django. (Maybe define a field type to hold the order and then add re-order widgets to the admin list page?) Comments / suggestions? Thanks. - matt

