> You're posting your update to a different view from the one that
> initially displays the form. The usual way to do this is to have the
> form post back to the same view, but have an 'if request.POST' to
> branch the execution. The main forms documentation explains the
> standard flow.

Ah I did see that, but I was planning on having a number of forms on
the same page and wasn't sure it would work if I left it as is?
>
> The main problem, though, is that you're not passing the instance into
> the form when you instantiate on post, so as you say the form creates
> a new instance. You just need to get the profile (that's where it
> makes sense to use the same view for display and post) and pass it in
> just as you do in the other view:
>    form = OrganisationForm(request.POST, instance=organisation)

Great, that fixed it in my separate view, so thanks for the tip! I'll
give it some more thought as to whether or not to go back to having it
in a single view or not.

Again, many thanks :)

Jon

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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