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
If this is a copy and past, you have a typo. I would highly recommend you use an IDE or something with error checking. Eclipse is what I use. It will save you a ton of time from little annoyances like this.
class PickForm(ModelForm):
class Meta:
Model = Car`
Your typo is right on the end of Car. The little apostrophe thing.