diff options
author | ankitjavalkar | 2016-04-29 11:23:07 +0530 |
---|---|---|
committer | ankitjavalkar | 2016-05-05 19:21:34 +0530 |
commit | 34fb6b71ce5fcbd9a5537b305504cadaeb86d9a3 (patch) | |
tree | 769c50fc9825ee73eeb7d844db3676a06f2e4e67 /yaksh/urls.py | |
parent | 5967e0e1cce19d356ba622719b332f776127b277 (diff) | |
download | online_test-34fb6b71ce5fcbd9a5537b305504cadaeb86d9a3.tar.gz online_test-34fb6b71ce5fcbd9a5537b305504cadaeb86d9a3.tar.bz2 online_test-34fb6b71ce5fcbd9a5537b305504cadaeb86d9a3.zip |
- Modify question - answer validation in views
- Modify show_question to include test_cases in template context
- Modify question display template
- Minor changes in forms and urls for proper rebasing
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r-- | yaksh/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py index 85d7fd1..6a33888 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -41,7 +41,7 @@ urlpatterns += [ url(r'^self_enroll/(?P<course_id>\d+)/$', views.self_enroll), url(r'^manage/$', views.prof_manage), url(r'^manage/addquestion/$', views.add_question), - url(r'^manage/addquestion/(?P<question_id>\d+)/$', views.add_question), + url(r'^manage/addquestion/(?P<question_id>\d+)/$', views.edit_question), url(r'^manage/addquiz/$', views.add_quiz), url(r'^manage/addquiz/(?P<quiz_id>\d+)/$', views.edit_quiz), url(r'^manage/gradeuser/$', views.grade_user), |