[Django]-Save custom field in Django ModelForm

4👍

You should return the saved object from the save() method:

return super(NewStoryForm, self).save(commit=commit)

Leave a comment