Looking into Forms basics, Dynamically creating forms, Formsets Creating Forms
Creating your own forms with basic fields.
Are awesome and will make your life better and should be used a lot!
ModelForm
Model
Knowing basic forms and model forms will get you really far in django.
Formsets and
Dynamically building forms
A short introduction as well as trying to make them not as scary.
Using formsets are easy
Creating Forms that can be based off of data in a model.
First thing we have to do is create the models. Here we create two models: Survey and Question.
Here our form is created the questions that saved based on the survey key.
Our field types are a one to one mapping of the field type choices in our models.
Here our form is created the questions that saved based on the survey key.
Our field types are a one to one mapping of the field type choices in our models.