sam wrote:
> I have a model such as:
> 
> class Part:
>     maker = ForeignKey(Maker)
>     ......
> 
> When I make a form to enter the "part" information, if I user standard
> AddManipulator, maker will become a selection list of all possible
> makers. What if I only want to show a sub-list of makers that belong to
> a specific "category". I suppose I should use custom manipulators, but
> don't know exactly how to do. Pls help!


How about:

maker = meta.ForeignKey(Maker, limit_choices_to={'category__exact': 'foo'})

-- 
Nebojša Đorđević - nesh
Studio Quattro - Niš - SCG
http://studioquattro.biz/
http://djnesh.blogspot.com/  |  http://djnesh-django.blogspot.com/ |  
http://djangoutils.python-hosting.com/
Registered Linux User 282159 [http://counter.li.org]

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

Reply via email to