If you want to mess with 'country' then you write a clean_country(self) function. If you want to mess with 'document' you write a clean_document(self) function.

If you want to do something with one and be sure the other is also available, you write a clean(self) function, which executes after all the clean_fieldname functions.

You're getting an error in your clean_document function because you're trying to access 'country,' which isn't available just then.

Also, ensure that your custom clean functions return values, because otherwise you're losing them. So your clean_country() function should return whatever value you expect cleaned_data['country'] to contain.


--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to