On Feb 10, 6:00 am, Keyan <keyan...@gmail.com> wrote:
> I am new to django!! working in windows. I have created a login page
> and validating in view.py file
> code wil go like this
>       for x in log:
>         if u_name ==x[1]:
>               return render_to_response('index.html',{"log":log})
>         else:
>               return render_to_response('wrong.html')
>

Ho, and yes, I forgot : you are not actually "redirecting to another"
url, you are rendering a different content for the same url (which
might not be a good idea). To do a redirect, you have to return an
HTTPResponse with the appropriate HTTP code - or more simply, and
HTTPResponseRedirect.

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