[Django]-Include auto generated primary key in Django ModelForm fields

3πŸ‘

βœ…

Are only the model fields explicitly declared visible in the
ModelForm?

Yes, generally you don’t want to mess with this field, if the user inputs a value for the id field it’s very likely to be duplicated so this is something you want django to take care of for you.

πŸ‘€e4c5

Leave a comment