Commit ee83067645538f00e33c5b84e076cca4996d2acc

Authored by Gustavo Bernardo
1 parent 238dbced

Including update link in urls.py [Issue: #122]

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
courses/urls.py
... ... @@ -22,6 +22,7 @@ urlpatterns = [
22 22 url(r'^topics/update/(?P<slug>[\w_-]+)/$', views.UpdateTopicView.as_view(), name='update_topic'),
23 23 url(r'^topics/createlink/$', linkviews.CreateLink.as_view(),name = 'create_link'),
24 24 url(r'^topics/deletelink/(?P<linkname>[\w_-]+)/$', linkviews.deleteLink,name = 'delete_link'),
  25 + url(r'^topics/updatelink/(?P<linkname>[\w_-]+)/$', linkviews.UpdateLink.as_view(),name = 'update_link'),
25 26 url(r'^topics/(?P<slug>[\w_-]+)/$', views.TopicsView.as_view(), name='view_topic'),
26 27 url(r'^subjects/categories$',views.IndexSubjectCategoryView.as_view(), name='subject_category_index'),
27 28 url(r'^forum/', include('forum.urls', namespace = 'forum')),
... ...