diff options
author | Prabhu Ramachandran | 2017-04-23 17:35:32 +0530 |
---|---|---|
committer | GitHub | 2017-04-23 17:35:32 +0530 |
commit | 0208f8643a80fbee52ad8ff273bdc459f00d0e89 (patch) | |
tree | 5eddc603bddbb11b8a2d75f6691424465fd00ee2 /yaksh/urls.py | |
parent | ad73f7b938b7620ab4be202dc33c699cf5cb4ac5 (diff) | |
parent | d2cbe09ff6d356e537ed1845b292b2138b6b8295 (diff) | |
download | online_test-0208f8643a80fbee52ad8ff273bdc459f00d0e89.tar.gz online_test-0208f8643a80fbee52ad8ff273bdc459f00d0e89.tar.bz2 online_test-0208f8643a80fbee52ad8ff273bdc459f00d0e89.zip |
Merge pull request #271 from adityacp/fix_course_templates
Fix Grade User, Monitor Templates
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 00b34e4..91f4137 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -40,7 +40,7 @@ urlpatterns = [ url(r'^manage/showquestionpapers/$', views.show_all_questionpapers), url(r'^manage/showquestionpapers/(?P<questionpaper_id>\d+)/$',\ views.show_all_questionpapers), - url(r'^manage/monitor/(?P<questionpaper_id>\d+)/$', views.monitor), + url(r'^manage/monitor/(?P<quiz_id>\d+)/$', views.monitor), url(r'^manage/user_data/(?P<user_id>\d+)/(?P<questionpaper_id>\d+)/$', views.user_data), url(r'^manage/user_data/(?P<user_id>\d+)/$', views.user_data), |