Commit aada597f298c7b1cf02d102a3756027a8d97b04e
1 parent
a9112bb2
Exists in
master
and in
5 other branches
Refactoring url's: change 'app' to 'dashboard' and added it to 'courses' and 'users'
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
amadeus/urls.py
... | ... | @@ -20,9 +20,9 @@ from django.conf.urls.static import static |
20 | 20 | from django.contrib import admin |
21 | 21 | |
22 | 22 | urlpatterns = [ |
23 | - url(r'^app/', include('app.urls', namespace = 'app')), | |
24 | - url(r'^course/', include('courses.urls', namespace = 'course')), | |
25 | - url(r'^users/', include('users.urls', namespace = 'users')), | |
23 | + url(r'^dashboard/', include('app.urls', namespace = 'app')), | |
24 | + url(r'^dashboard/course/', include('courses.urls', namespace = 'course')), | |
25 | + url(r'^dashboard/users/', include('users.urls', namespace = 'users')), | |
26 | 26 | url(r'^admin/', admin.site.urls), |
27 | 27 | url(r'^', include('core.urls', namespace = 'core')), |
28 | 28 | ] | ... | ... |