Re: Index in admin

2007-04-09 Thread Brian Rosner
On 2007-04-09 04:57:14 -0600, "Martin" <[EMAIL PROTECTED]> said: > > order_with_respect_to might be the solution, but it does not seem to > work. > > /Martin > > > Yeah this is outlined in http://code.djangoproject.com/ticket/13. It appears that newforms-admin is on its way to help resolve

Re: Index in admin

2007-04-09 Thread patrick k.
this question has been raised previously. if you search the mailing- list you will find some "answers". look for "move up/move down" ... if I remember this right, the answer was that this is "out of the scope" of django. you´ll also find some code here: models.py: http://dpaste.com/hold/4898/

Re: Index in admin

2007-04-09 Thread Martin
order_with_respect_to might be the solution, but it does not seem to work. /Martin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroup

Index in admin

2007-04-09 Thread Martin
Often you need to give the user control over the order of records in a table, and allow the user to move a record "up" or "down". This could be done by adding an index field to the table, and make a special view instead of using Django's admin view. Is that the way to accomplish this, or does Dja