diff options
author | CruiseDevice | 2020-04-13 16:45:42 +0530 |
---|---|---|
committer | CruiseDevice | 2020-04-13 16:45:42 +0530 |
commit | 0e6c7d589114450d5cd1bc581ee1692c235f1a73 (patch) | |
tree | 3e1749b9695a708ac65deb5953d4913250335522 /yaksh/urls.py | |
parent | 2a9f81cb32acfd7a2efc18f58c4529b39ce4061b (diff) | |
download | online_test-0e6c7d589114450d5cd1bc581ee1692c235f1a73.tar.gz online_test-0e6c7d589114450d5cd1bc581ee1692c235f1a73.tar.bz2 online_test-0e6c7d589114450d5cd1bc581ee1692c235f1a73.zip |
Add feature for uploading images
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r-- | yaksh/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py index 47cfad4..a8aa224 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -61,6 +61,7 @@ urlpatterns = [ views.course_modules, name='course_modules'), url(r'^forum/(?P<course_id>\d+)/$', views.course_forum, name='course_forum'), url(r'^forum/(?P<course_id>\d+)/thread/(?P<uuid>[0-9a-f-]+)/', views.thread_comments, name='thread_comments'), + url(r'^forum/(?P<course_id>\d+)/thread/(?P<uuid>[0-9a-f-]+)/delete/', views.delete_thread, name='delete_thread'), url(r'^manage/$', views.prof_manage, name='manage'), url(r'^manage/addquestion/$', views.add_question, name="add_question"), url(r'^manage/addquestion/(?P<question_id>\d+)/$', views.add_question, |