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
Custom clean() method for the form
dj:form:clean_all
python
def clean(self):
cleaned_data = super().clean()
${1:# Add global form validation}
return cleaned_data