How would it be more correct to copy the fields from the model or to describe the form with the fields in a new way? Or it all depends on the case how to use the form?
class TestForm(ModelForm): class Meta: model = Testtest class TestForm(forms.Form): term = forms.CharField(max_length=10)