> Would a separate model be appropriate to accomplish this?

Perhaps. You didn't say how large the data set is. If there is only
one ordering, then simply having an additional integer field on the
model might be more useful. That way you can do something like:

   objs = mymodel.objects.order_by('my_ordering_field')
   for obj in objs:
      <do something>


As far as ordering things (again, assuming that things fit on one web
page), you might look at:

http://interface.eyecon.ro/docs/sort
or
http://tool-man.org/examples/sorting.html

Both of which do javascripty things with lists. When done, just ship
the final ordering back to the server.

Good Luck
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to