I am trying to make a search form for one of my classes. The model of the form is:
from django import forms from django.forms import CharField, ModelMultiple
At times, if we forget the
return self.cleaned_data
in the clean function of django forms, we will not have any data though the form.is_valid() will return True.
form.is_valid()
True