how to do server side form validation for dynamic inputs with Django
- by Satoru.Logic
Hi, all.
I am using django.forms.Form to validate form data in a survey applications.
In a survey-creating form, a user can submit multiple questions that belong to the survey being created.
Names for the question inputs are in the form of 'question_seq' , where seq is maintained using Javascript.
Back in the server side, my code doesn't know…