Re: Admin URL for filtering

2008-02-22 Thread sanrioyt
Thanks Julien for the reply. However, it does not work. When I go to: http://:8000/project/app/student__id__in=15__id__in=2 It only displays the student whose id is 2 (i.e., takes the second part and ignores the first part). And if I go to: http://:8000/project/app/student__id__in=2__id__in=15

Re: Admin URL for filtering

2008-02-22 Thread Julien
Hi, If I recal, you need to repeat the variable name in the URL to actually pass a list of values. Try this and see how you go: http://:8000/project/app/student__id__in=15__id__in=2 On Feb 23, 7:55 am, [EMAIL PROTECTED] wrote: > Hi all. > > Is it possible to pass the following using the admin

Admin URL for filtering

2008-02-22 Thread sanrioyt
Hi all. Is it possible to pass the following using the admin url: http://:8000/project/app/student__id__in=15,2 I am looking for a value of 15. Currently, both admin and newadmin translates it to the query: student__id__in ('1','5',','2') Is there a way to only let it translate to: