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
In my case, the error occurs because I wrote class META instead, it should be class Meta
class META
class Meta