Django Form Clean All

Descripción

Custom clean() method for the form


File Template: ❌


Prefix

dj:form:clean_all


Scopes

python


Snippet de código

def clean(self):
	cleaned_data = super().clean()
	${1:# Add global form validation}
	return cleaned_data