On Fri, Oct 16, 2009 at 8:04 AM, grimmus <graham.col...@gmail.com> wrote:

>
> Hi,
>
> On my website i have a edit profile page, this enables users to edit 4
> fields : username, first name, last name and email address. For some
> reason the form never validates, is it not enough just to pass the 4
> fields i want to edit and leave the others as they are ?
>
> My view looks like
>
> def profile_edit(request):
>    if request.method == 'POST':
>        form = UserChangeForm(request.POST, instance=request.user)
>        if form.is_valid():
>            edit_user = form.save()
>            return HttpResponseRedirect("/accounts/profile/updated")
>        else:
>            return render_to_response("registration/
> profile_edit.html")
>            print form.errors
>    else:
>        user=request.user
>        form = UserChangeForm(instance=user)
>        return render_to_response("registration/profile_edit.html",
> { 'form':form,})
>
> Is there something else i need to pass to make it validate ?
>
>
If you followed the standard pattern for a form-handling view:

http://docs.djangoproject.com/en/dev/topics/forms/#using-a-form-in-a-view

which returns the form annotated with errors for rendering in the template
in the case where is_valid() returns False, you would likely have a better
idea of what the "some reason" is for the validation failing.  The submitted
form would be re-displayed with error annotation along with the provided
input that would hopefully explain what is wrong with the provided data.  Or
at least give a hint of where the problem lies. The code you have here
returns no form at all in the error case?  And then prints the form
errors....except the print after the return is never going to execute.

Karen

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