Hi,

I have an application who's start page is hello.html(dynamic page
where the contents change based on which user has logged in). Now I
want to protect this page using django's app-engine patch so that only
authenticated users can access their respective pages.

I followed the example in 
http://code.google.com/appengine/articles/app-engine-patch.html
which was a good start but now I wanted to know as to how to call a
new html form from within the urls.py so that my hello.html comes up.
I know that I need to add a line in urls.py

"(r'^sign/$', 'helloworld.test.hello')" where there is a py file named
test with a function named hello. Now how do I check if the user is
auth and redirect him to hello.html???

Thanks,
~D

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