skip to Main Content

Form's clean method not getting called – SEO

I am trying to create some objects with django's CBV FormView the code for form_class is like this: class UrlForm(forms.Form): url = forms.CharField(required=True, help_text=_("This should be an absolute path, excluding the domain name. Example: '/events/search/'."), widget=forms.TextInput(attrs={'style':'width:400px;'})) title = forms.CharField(required=True, widget=forms.Textarea())…

VIEW QUESTION
Back To Top
Search