Thanks Julien for the reply. However, it does not work. When I go to: http://<machine>:8000/project/app/student__id__in=15&student__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://<machine>:8000/project/app/student__id__in=2&student__id__in=15 Then, it displays the students whose id is 1 or whose id is 5. It disregards that student whose id is 2. I guess I could always pass the following to the url: http://<machine>:8000/project/app/student__id__in=215 and that would display those students whose id is either 2, 1 or 5. It would have worked if I only have one digit for student. However, I have hundreds of students, so that would not work. Is there hope for a solution? Thanks, sanrioyt On Feb 22, 4:35 pm, Julien <[EMAIL PROTECTED]> wrote: > 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://<machine>:8000/project/app/student__id__in=15&student__id__in=2 > > On Feb 23, 7:55 am, [EMAIL PROTECTED] wrote: > > > Hi all. > > > Is it possible to pass the following using the admin url: > > http://<machine>: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: student__id__in('15','2') > > > It seems very simple, but I did not know how to do it. > > > Thank you for your responses. > > > sanrioyt --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---