Commit c90a5720d032ab45ac16dfca0f283a064e9bd0c1
1 parent
334674ec
Exists in
master
and in
5 other branches
Including links urls in courses urls.py [Issue:#126]
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
courses/urls.py
... | ... | @@ -30,6 +30,7 @@ urlpatterns = [ |
30 | 30 | url(r'^exam/', include('exam.urls', namespace = 'exam')), |
31 | 31 | url(r'^files/', include('files.urls', namespace = 'file')), |
32 | 32 | url(r'^upload-material/$', views.UploadMaterialView.as_view(), name='upload_material'), |
33 | + url(r'^links/',include('links.urls',namespace = 'links')), | |
33 | 34 | |
34 | 35 | |
35 | 36 | ... | ... |