On 1/21/07, John M <[EMAIL PROTECTED]> wrote:
> As you can see, each user can have many portfolios, and each portfolio
> has N number of holdings.
>
> What I want is a list of all holdings for a particular user, is this
> possible?

Something like this should work in a view:

user_holdings = Holding.objects.filter(portfolio__user__pk=request.user.id)

The filter condition there specifies that you only want Holdings whose
Portfolio's user's id is the same as the id of the current user. The
same sort of filtering would also work with any other instance of
User, if you ever wanted to implement, say, searching for a particular
user's holdings instead of just the user in the current request.

-- 
"May the forces of evil become confused on the way to your house."
  -- George Carlin

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to