From ba50e500a1da9266f9bee5bc38b69635637f6129 Mon Sep 17 00:00:00 2001 From: prathamesh Date: Wed, 26 Mar 2014 14:48:45 +0530 Subject: User authentication using external database. Django authentication backend overriden to authenticate user using spoken tutorial database. Added database router to handle the database operations. --- testapp/exam/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testapp/exam') diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py index 33b2edf..afeda68 100644 --- a/testapp/exam/urls.py +++ b/testapp/exam/urls.py @@ -11,7 +11,7 @@ urlpatterns = patterns('exam.views', url(r'^intro/(?P\d+)/$','intro'), url(r'^complete/$', 'complete'), url(r'^complete/(?P\d+)/$', 'complete'), - url(r'^register/$', 'user_register'), + #url(r'^register/$', 'user_register'), url(r'^(?P\d+)/$', 'question'), url(r'^(?P\d+)/check/$', 'check'), url(r'^(?P\d+)/check/(?P\d+)/$', 'check'), -- cgit