Also take a look at the code for django-survey at http://code.google.com/p/django-survey/
This helped me a lot when I needed to do something similar last year. Paddy On Jan 19, 8:42 am, dk <dan.kel...@dal.ca> wrote: > I have an application in which I'd like to present a form whose > elements are stored in a database. To be specific, the database > contains a series of questions that I'd like to ask the user, via > radio buttons. > > I can't do e.g. > > class thingee(forms.Form): > q1 = forms.BooleanField() > q2 = forms.BooleanField() > > and so forth, because the code doesn't "know" how many questions will > be asked (nor, of course, the labels for the questions, not shown > above). > > Is there a way to do this? I've tried putting e.g. the following in > my template > > <input type="checkbox" name="{{t}}" id="id_{{t}}" > > where the {{t}} is derived from the database (say, "q1", "q2", etc. > through a loop) but I don't know how to access these in my views.py > code. > > Is there a way to do what I'm trying?
-- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.