Django ModelForm has no model class specified
Just do this method your page will run:
class PickForm(ModelForm):
class Meta:
model = Car
fields = "__all__"
It should be model
instead of Model
(and without the trailing `, but I guess that's a typo):
class PickForm(ModelForm):
class Meta:
model = Car
my error was because I wrote meta instead of Meta