django - dynamic form fieldsets
- by user110029
A form will be spitting out an unknown number of questions to be answered. each question contains a prompt, a value field, and a unit field. The form is built at runtime in the formclass's init method.
I'd like each question rendered on the form as an inline: prompt, value(input-text), units (select).
this seems a case perfect for iterable form…