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:
what is "log" here ? > if u_name ==x[1]: and what is 'x' supposed to be ? And why do you test against the second item of x ? I strongly suspect you're new to python and even to programming too. > return render_to_response('index.html',{"log":log}) > else: > return render_to_response('wrong.html') You understand that this loop will execute _at most_ once ? And that it may never execute at all - which seems to be your problem here -, resulting in neither of the explicit "return" statement being executed, so the function implicitely returns None ? > here if the u_name doesnt match doesn't match what ?-) > means it wil go to else part and call > wrong.html file. but its not working for me.. it showing following > error > > "didn't return an HttpResponse > object" Hint : if you're using the builtin dev server (this is what you're doing, right ?), then add a couple print statements here and there to tell where you are and what values you have, ie: print "before loop, 'log' is '%s', u_name is '%s' '" % (repr(log), u_name) for x in log: print "in loop, x is '%s', x[1] is '%s'" % (x, x[1]) if u_name ==x[1]: print "match -- returning 'index'" return render_to_response('index.html',{"log":log}) else: print "don't match - returning 'wrong' " return render_to_response('wrong.html') # if we end up here then 'log' was an empty iterable print "oops, 'log' was empty, didn't enter the loop, implicitely returning None" This should help you finding out what happens. -- 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.