On Feb 6, 9:40 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> I'm sure this is a common case and the answer is readily available
> somewhere, but I can't seem to find it.
>
> In a model, I've got:
>     author = models.ForeignKey(User, related_name="article_author")
>
> But I don't want to get all Users, I want to filter for Is_staff and
> only show staff users.

I am assuming you want this behaviour in the Admin. If so, try this:

author = models.ForeignKey(User, related_name="article_author",
limit_choices_to={'is_staff':True})

http://www.djangoproject.com/documentation/model-api/#many-to-one-relationships

-RD

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