diff options
author | hardythe1 | 2012-02-23 16:30:36 +0530 |
---|---|---|
committer | hardythe1 | 2012-02-23 16:30:36 +0530 |
commit | 9acff5f2cf9f9ae3d2fc097e1fcd84712d3199d0 (patch) | |
tree | cac2d9feddb2c5d45f24a806275d23635b528fe9 /testapp/exam/urls.py | |
parent | f2d65592affd34bc60cf4a3a2c72de1d84c934c0 (diff) | |
download | online_test-9acff5f2cf9f9ae3d2fc097e1fcd84712d3199d0.tar.gz online_test-9acff5f2cf9f9ae3d2fc097e1fcd84712d3199d0.tar.bz2 online_test-9acff5f2cf9f9ae3d2fc097e1fcd84712d3199d0.zip |
more changes to edit multiple questions at a time
Diffstat (limited to 'testapp/exam/urls.py')
-rw-r--r-- | testapp/exam/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testapp/exam/urls.py b/testapp/exam/urls.py index d4ebe50..67debd2 100644 --- a/testapp/exam/urls.py +++ b/testapp/exam/urls.py @@ -14,6 +14,7 @@ urlpatterns = patterns('exam.views', url(r'^manage/addquestion/$', 'add_question'), url(r'^manage/addquestion/(?P<question_id>\d+)/$', 'add_question'), url(r'^manage/addquiz/$', 'add_quiz'), + url(r'^manage/editquestion/$', 'edit_question'), url(r'^manage/addquiz/(?P<quiz_id>\d+)/$', 'add_quiz'), url(r'^manage/gradeuser/$', 'show_all_users'), url(r'^manage/gradeuser/(?P<username>[a-zA-Z0-9_.]+)/$', 'grade_user'), |