diff options
author | CruiseDevice | 2020-04-11 17:45:31 +0530 |
---|---|---|
committer | CruiseDevice | 2020-04-11 17:45:31 +0530 |
commit | 2a9f81cb32acfd7a2efc18f58c4529b39ce4061b (patch) | |
tree | 4bf11c11a597101a99f09784517ca54923a63407 /yaksh/urls.py | |
parent | 4802a89acef7567c6a8861daab60924fe862367f (diff) | |
download | online_test-2a9f81cb32acfd7a2efc18f58c4529b39ce4061b.tar.gz online_test-2a9f81cb32acfd7a2efc18f58c4529b39ce4061b.tar.bz2 online_test-2a9f81cb32acfd7a2efc18f58c4529b39ce4061b.zip |
Discussion forum for a course
Diffstat (limited to 'yaksh/urls.py')
-rw-r--r-- | yaksh/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/yaksh/urls.py b/yaksh/urls.py index bdc3330..47cfad4 100644 --- a/yaksh/urls.py +++ b/yaksh/urls.py @@ -59,6 +59,8 @@ urlpatterns = [ views.get_next_unit, name='next_unit'), url(r'^course_modules/(?P<course_id>\d+)/$', 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'^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, |