[Answer]-How to avoid cleaned_data for each field if I have too many fields in the form

1👍

Just use form.save().

    predio = form.save(commit=False)
    predio.predio_id = 1
    predio.save()

Leave a comment