You should be able to do something like:

UserProfile.objects.filter(gender='female',
user__email='some...@mail.com')

Note the double underscore notation, which let's you access attributes
of the related model. This example assumes that UserProfile has a FK
field to User which is named 'user'.

On Nov 21, 10:36 pm, Rogério Carrasqueira
<rogerio.carrasque...@gmail.com> wrote:
> Hello Folks!
>
> I'm working on my system that has 2 classes to work with user managemet:
> User and UserProfile, and I would like to make on admin an unified search.
> For example I would like to find a user by e-mail at User class and all User
> that is female or something like that. So, Is there anyway to work on this
> direction?
>
> Thanks
>
> Rogério Carrasqueira
>
> ---
> e-mail: rogerio.carrasque...@gmail.com
> skype: rgcarrasqueira
> MSN: rcarrasque...@hotmail.com
> ICQ: 50525616
> Tel.:(11) 7805-0074

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to