Re: Just learning the ropes with Django and authentication

2008-04-01 Thread Jeremy Sandell
Probably the best way to understand how it works is to check the source. under django/contrib/admin/views/decorators.py is the view (_display_login_form), and under django/contrib/admin/templates/admin/ login.html is the form itself. I'd also suggest looking at django/contrib/auth/ for futher

Just learning the ropes with Django and authentication

2008-03-31 Thread James
I am trying to figure out if there is a way to used the Django built in login page (the one used to get into the administration pages) and link that to my own site. I am also just beginning in the website business as well. Does anyone have any suggestions, or anyway that I can better understand