d = Person.objects.get(id=1) p = forms.models.form_for_instance(d) f=p() After I do this both "f.is_valid()" and "f.is_bound" are false. However, there is correct data in the form if I do "print f" (and that confuses me).
An alternative way I tried was: d = Person.objects.get(id=1) p = forms.models.form_for_instance(d) f = p(d.__dict__) When I do this, the form is bound but not valid. The value for the foreign key field "country" is lost and therefore not longer valid, which is correct. Nevertheless the value for the country field should be set correctly (as it is if I do print d.__dict__). I am using Django 0.96 release version on mysql. M. On May 1, 11:19 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Tue, 2007-05-01 at 21:21 -0700, maeck wrote: > > oops, did not use form_for_instance(d). > > However, is_valid is not telling me that the form is correct. > > What am I doing wrong? > > Well, if f.bound is True and f.is_valid() is false, f.errors will > contain the validation errors. That would be a good spot to start > looking. > > Regards, > Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---