Re: Ordered list of objects?

2007-05-01 Thread [EMAIL PROTECTED]
I've got the solution, you can download it here: http://purplesquirrelgroup.com/order_list.tar.gz Here's the readme: To use these models you will want to do the following: For your Collection class: from order_list.models import Order_List from django.db import models class Collection( Order_

Re: Ordered list of objects?

2007-04-20 Thread [EMAIL PROTECTED]
I don't know if this is the "right" solution or not. In my home grown framework I've got a doubly linked list implementation. My intention in Django is to write an application Ordered_List that would be a functioning doubly linked list with minimal data fields (currently just a name for each list

Re: Ordered list of objects?

2007-04-04 Thread Nathan R. Yergler
On 4/4/07, Atilla <[EMAIL PROTECTED]> wrote: > > On 04/04/07, Nathan R. Yergler <[EMAIL PROTECTED]> wrote: > > > > I'm working on an app for a client, and one of the requirements is > > that they be able to re-order objects in the admin interface. I know > > exactly how I'd do with with an object

Re: Ordered list of objects?

2007-04-04 Thread Atilla
On 04/04/07, Nathan R. Yergler <[EMAIL PROTECTED]> wrote: > > I'm working on an app for a client, and one of the requirements is > that they be able to re-order objects in the admin interface. I know > exactly how I'd do with with an object database, but the ideas I've > come up with for doing it

Ordered list of objects?

2007-04-03 Thread Nathan R. Yergler
I'm working on an app for a client, and one of the requirements is that they be able to re-order objects in the admin interface. I know exactly how I'd do with with an object database, but the ideas I've come up with for doing it with Django all involve using some tracking field, and then updatin