Reputation: 21957
I am using James Bennetts code to create a dynamic form. I have everything working but want to save the data to a database. Has anyone got any code which does this or could show me what the best way to do this would be e.g. how the model should be set up etc?
Upvotes: 0
Views: 1158
Reputation: 1607
Override the save()
method on your form class:
def save(self):
new_user = User.objects.create_user(username=self.cleaned_data['username'],
email=self.cleaned_data['email'],
password=self.cleaned_data['password1'])
return new_user
(taken from James Bennett's blog at Newforms, part 2)
Upvotes: 2