I am trying to use ModelForm:
from django.db import models from django.forms import ModelForm class Car(models.Model): carnumber = models.CharField(max_leng
It should be model instead of Model (and without the trailing `, but I guess that's a typo):
model
Model
class PickForm(ModelForm): class Meta: model = Car