You can find it in django.forms.forms.BaseForm._clean_fields
(django/forms/forms.py line 271, the line you'll want to look at is 286).
To solve your specific problem, you'll want to do something like:
for field in self.model._meta.fields:
if hasattr(self, "process_%s" % field.name):
getattr(self, "process_%s" % field.name)()
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-users/-/j3Zewm0agQUJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.