sam wrote:
> My problem is the "category" is determined at run-time, not at module
> definition time. How to do that? Thanks.

I'm missed 'When I make a form to enter the "part" information' part :)

From: http://www.djangoproject.com/documentation/forms/

something like this (untested):

class ContactManipulator(formfields.Manipulator):
    def __init__(self, category):
        <import model module>
        maker_choices = []
        for dct in makers.get_values(fields=['id', 'name'], 
category__exact=category):
                maker_choices.append((dct['id'], dct['name']))
        self.fields = (
            formfields.SelectField(field_name="maker", choices=maker_choices),
            ....
        )

So you can decide which category to show when creating a form in your view 
function, and use this instead of AddManipulator.

Hope that helps.

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