>From what I remember you do:

def myformcallback(f, **args):
    exclude = ['author']
    if f.name in exclude:
        return None
    return f.formfield(**args)

MyForm = form_for_instance(book, formfield_callback=myformcallback)

if request.POST:
    form = MyForm(request.POST)
    form.save()
else:
    form = MyForm()

I found it much easier to just bite the bullet and pretend
form_for_model and form_for_instance don't exist.   It's more work
initially, but it's clear.


--~--~---------~--~----~------------~-------~--~----~
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