Oleg,

You can set a parameter in your post request that allows you to
differentiate between the two POST requests.

But a more clean approach would be to just have the different forms POST to
different urls(views) and the redirect back to the profile page if there is
an error or do whatever.

Ian

On Wed, Jun 24, 2009 at 2:45 PM, Oleg Oltar <oltarase...@gmail.com> wrote:

>
> Hi!
>
> I am writing a small application for user profile management.
>
> I need to display and to process output from 2 form on the page of own
> profile. How can I do it?
>
> 1. Form if to change avatar. (Contains browse and upload buttons)
> 2. Form is for changing user details, e.g. info field, or maybe emails
>
> I want these form to be processed independently. E.g. user can submit
> one without filling another.
>
> I have read a post about similar problem here:
>
> http://groups.google.com/group/django-users/browse_thread/thread/1ff0909af4e0cdfe
> but didn't find a solution for me.
>
> e.g. if we have following code:
>    if request.method == 'POST':
>        form1 = RegistrationForm(request.POST)
>        form2 = .......(request.POST)
>
> How to process them? Mean one of them will be empty, and it means I
> don't need to return an error in that case.
> Actually,  I need to understand which of them is in post. But how?
>
>
> Thanks,
> Oleg
>
> >
>


-- 
=======================================
株式会社ビープラウド  イアン・ルイス
〒150-0012
東京都渋谷区広尾1-11-2アイオス広尾ビル604
email: ianmle...@beproud.jp
TEL:03-5795-2707
FAX:03-5795-2708
http://www.beproud.jp/
=======================================

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