[Answer]-Can I use Forms or do you strongly recommend ModelForm instead?

1đź‘Ť

I can’t imagine what you’re finding complicated about “the ModelForm API”. It’s exactly the same as the basic Form API, with the addition of the inner Meta class to automatically create fields from the model, and the save method to save to a model.

Of course the basic Form doesn’t have any way of saving directly to a model. That’s exactly what the ModelForm is for. A non-model form doesn’t know anything about any models, so it can’t save to them.

Leave a comment