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/myauthentication/views.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 testapp/myauthentication/views.py (limited to 'testapp/myauthentication/views.py') diff --git a/testapp/myauthentication/views.py b/testapp/myauthentication/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/testapp/myauthentication/views.py @@ -0,0 +1 @@ +# Create your views here. -- cgit