1👍
✅
In you model the field is named item_id
but in your ModelForm
the field is named itemID
. The field names should be the same.
Rename the fields in your ModelForm
so they match the Model
.
Source:stackexchange.com