Commit 7446c4af63222d893d462ee69498a25bbc9e0d16
1 parent
e38b1d17
Exists in
master
and in
5 other branches
Fixing url 'subscribe_subject' problem
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
courses/urls.py
| ... | ... | @@ -19,7 +19,7 @@ urlpatterns = [ |
| 19 | 19 | url(r'^subjects/create/(?P<slug>[\w_-]+)/$', views.CreateSubjectView.as_view(), name='create_subject'), |
| 20 | 20 | url(r'^subjects/update/(?P<slug>[\w_-]+)/$', views.UpdateSubjectView.as_view(), name='update_subject'), |
| 21 | 21 | url(r'^subjects/delete/(?P<slug>[\w_-]+)/$', views.DeleteSubjectView.as_view(), name='delete_subject'), |
| 22 | - url(r'^subjects/subscribe/(?P<slug>[\w_-]+)/$', views.subscribe_subject, name='subscribe_subject'), | |
| 22 | + #url(r'^subjects/subscribe/(?P<slug>[\w_-]+)/$', views.subscribe_subject, name='subscribe_subject'), | |
| 23 | 23 | url(r'^topics/create/(?P<slug>[\w_-]+)/$', views.CreateTopicView.as_view(), name='create_topic'), |
| 24 | 24 | url(r'^topics/update/(?P<slug>[\w_-]+)/$', views.UpdateTopicView.as_view(), name='update_topic'), |
| 25 | 25 | url(r'^topics/createlink/$', linkviews.CreateLink.as_view(),name = 'create_link'), | ... | ... |