I have a list of objects and I want to be able to do a filter on a list of objects. Here is my code:
y = Choice.objects.all() assert False, y #output of this statement is below AssertionError at /rugs/searchresult/ [<Choice: (<Size: 2' x 3'>, <Price: 39>)>, <Choice: (<Size: 4' x 5'9>, <Price: 169>)>, <Choice: (<Size: 5'3 x 7'6>, <Price: 299>)>, <Choice: (<Size: 7'9 x 11'>, <Price: 449>)>, <Choice: (<Size: 9'9 x 12'2>, <Price: 899>)>, <Choice: (<Size: 2' x 3'>, <Price: 199>)>, <Choice: (<Size: 9'9 x 12'2>, <Price: 149>)>, <Choice: (<Size: 2' x 3'>, <Price: 149>)>, <Choice: (<Size: 4' x 5'9>, <Price: 169>)>, <Choice: (<Size: 9'9 x 12'2>, <Price: 799>)>] ///// We'll I want to get all the the object's that contain a certain price. I tried this: y = Choice.objects.all() y = y.filter(price=149) It just returns []. How would I be able to get a list that contains all the objects that have a price of 149? Thanks Thanks --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---