On 10/4/07, Marty Alchin <[EMAIL PROTECTED]> wrote:
> It's using the save() method from AddressForm, which only knows about
> its own fields.

You should also verify that is_valid() is in fact checking all the
fields as well. I suspect that, like save(), it's only looking at the
AddressForm fields. Fixing it would be similar to save(), just add
another method, like so:

def is_valid(self):
    return AddressForm.is_valid(self) and CountryForm.is_valid(self)

-Gul

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to