Re: User/UserProfile Queryset problem

2012-03-27 Thread bcrem
Oh. I see. So...that wasn't very complicated at all then, was it? Thanks DR - didn't realize you could access userprofile directly from user that way. On Mar 27, 2:31 am, Daniel Roseman wrote: > On Tuesday, 27 March 2012 02:15:04 UTC+1, bcrem wrote: > > > Hello Django

Re: User/UserProfile Queryset problem

2012-03-27 Thread Daniel Roseman
On Tuesday, 27 March 2012 02:15:04 UTC+1, bcrem wrote: > > Hello Django Nerds! > > So I have a (somewhat) complicated lookup I'm trying to do; here's the > gist of it: > > 1. I have a Store class, with a User ManyToManyField, Store.users > 2. I have a user profile class associated with

User/UserProfile Queryset problem

2012-03-26 Thread bcrem
Hello Django Nerds! So I have a (somewhat) complicated lookup I'm trying to do; here's the gist of it: 1. I have a Store class, with a User ManyToManyField, Store.users 2. I have a user profile class associated with each user, UserProfile, accessible through the usual User.get_profile()