It worked, first time :-) For the record, this is what the code looks
like now:

urls.py:

(r'address/edit/(?P<id>\d+)/', 'testdb.mtable.views.edit_address')


views.py:

def edit_address(request, id=None):
    address = Address.objects.get(pk=id)
    country = address.country

    AddressForm = form_for_instance(address, fields=('address_1',
'address_2', 'town', 'county'))
    CountryForm = form_for_instance(country, fields=('iso', 'name'))

    class FullForm(forms.Form, AddressForm, CountryForm):
        def save(self):
            AddressForm.save(self)
            CountryForm.save(self)
        def is_valid(self):
            return AddressForm.is_valid(self) and
CountryForm.is_valid(self)

    if request.method == 'POST':
        form = FullForm(request.POST)
        if form.is_valid():
            form.save()
            return HttpResponseRedirect('/address/edit/' + str(id) +
'/')
    else:
        form = FullForm()

    return render_to_response('address/edit.html', locals())

Probably needs more refinement, but it works.

--
James

On Oct 4, 4:05 pm, "Marty Alchin" <[EMAIL PROTECTED]> wrote:
> 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