RE: How to create a Dynamic Hierarchical Form

2013-04-22 Thread Babatunde Akinyanmi
with request.POST which is dictionaryish. Sent from my Windows Phone -- From: Cody Scott Sent: 4/22/2013 9:22 PM To: django-users@googlegroups.com Subject: How to create a Dynamic Hierarchical Form I am trying to create a form where you select product(s) and technology(s) and

RE: How to create a Dynamic Hierarchical Form

2013-04-22 Thread Babatunde Akinyanmi
with request.POST which is dictionaryish. Sent from my Windows Phone -- From: Cody Scott Sent: 4/22/2013 9:22 PM To: django-users@googlegroups.com Subject: How to create a Dynamic Hierarchical Form I am trying to create a form where you select product(s) and technology(s) and

How to create a Dynamic Hierarchical Form

2013-04-22 Thread Cody Scott
I am trying to create a form where you select product(s) and technology(s) and based on your selection different modules are available for selection. forms.py def make_quiz_form_class(): #Listing available options products = [(i, _(i)) for i in Product.objects.all()] technologies