Hi, I'm new to Django. As a small project, I'm making a purchase request form with one section that has the user information and the 2nd section has items(computer hardware and software) that the user can request. This list of items in the 2nd section is dynamic in that it reads from a list of items in a database, so it can change depending on what has been added/removed from the database. Is it possible to use newforms for this type of form? If so, how? I'm using 0.96. I'm not sure how I'd construct the form object.
class RequestForm(forms.Form): username = forms.CharField(max_length=100) email = forms.EmailField() department = forms.CharField() # some sort of class/dictionary... of items ordered, and qty (laptops: qty 2, MS Visio 2003 qty 2)... # this is where I get lost. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---