included urls for logging in and out anoop
authornishanth
Mon, 07 Jun 2010 15:30:03 +0530
branchanoop
changeset 66 8a5436485760
parent 65 0ca63c964237
child 67 b9690fbf78af
included urls for logging in and out
sdi/site/urls.py
--- a/sdi/site/urls.py	Mon Jun 07 15:20:11 2010 +0530
+++ b/sdi/site/urls.py	Mon Jun 07 15:30:03 2010 +0530
@@ -1,11 +1,13 @@
 from django.conf.urls.defaults import *
 
-from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi
+from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout
 
 urlpatterns = patterns('',
 		       (r'^register/$', register),
                        (r'^complete/$', reg_complete),
                        (r'^stats/$', list_stats),
                        (r'^send_invi/$', send_invi),
+                       (r'^login/$', admin_login),
+                       (r'^logout/$', admin_logout),
                       )