Django ModelForm has no model class specified

dpbklyn picture dpbklyn · Jan 26, 2012 · Viewed 55.8k times · Source

I am trying to use ModelForm:

from django.db import models
from django.forms import ModelForm

class Car(models.Model):
    carnumber = models.CharField(max_length=5)

    def __unicode__(self):
        return self.carnumber

class PickForm(ModelForm):
    class Meta:
        Model = Car`

I have checked this and I cannot find my error. When I call the view in a browser, it gives me the following error:

ModelForm has no model class specified

I have tested the view that calls the model with simple "foo bar" code at the same URL, but when I try this code, I get the class error above.

Answer

Jan Pöschko picture Jan Pöschko · Jan 26, 2012

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