summaryrefslogtreecommitdiff
path: root/exam/urls.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2011-11-10 08:59:09 -0800
committerPrabhu Ramachandran2011-11-10 08:59:09 -0800
commitc69bc272c1c3ba02c3f244586b65254036e73de3 (patch)
tree23b1cb67582a49d93523aaa7ad3a1bbf81dacb02 /exam/urls.py
parent30f005126c97121548cc1d453997933482bd33a8 (diff)
parentf569c1f1cea65f744f42941b5d7e75b49350d442 (diff)
downloadonline_test-c69bc272c1c3ba02c3f244586b65254036e73de3.tar.gz
online_test-c69bc272c1c3ba02c3f244586b65254036e73de3.tar.bz2
online_test-c69bc272c1c3ba02c3f244586b65254036e73de3.zip
Merge pull request #1 from nishi2rock/master
Implemented the user register and login feature
Diffstat (limited to 'exam/urls.py')
-rw-r--r--exam/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/exam/urls.py b/exam/urls.py
index 1ca9755..e517adb 100644
--- a/exam/urls.py
+++ b/exam/urls.py
@@ -2,6 +2,8 @@ from django.conf.urls.defaults import patterns, include, url
urlpatterns = patterns('exam.views',
url(r'^$', 'index'),
+ url(r'^login/$', 'user_login'),
+ url(r'^register/$', 'user_register'),
url(r'^start/$', 'start'),
url(r'^quit/$', 'quit'),
url(r'^complete/$', 'complete'),