[Answered ]-Django Crispy Form doesn't add or update database

1👍

Try rewriting your form like this:

class ManipulateProductForm(forms.ModelForm):
    def __init__(self, *args, **kwargs):
        super(ManipulateProductForm, self).__init__(*args, **kwargs)
        self.helper = FormHelper(self)
        self.helper.form_action = 'Submit'
        self.helper.add_input(Submit('submit', 'Submit', css_class='btn btn-primary'))

    class Meta:
        model = Car
        fields = '__all__'

And in your template you can just do the following, since you used the default name of the helper:

{% crispy form %}

Leave a comment