Fix URLconf
This commit is contained in:
parent
6899b9b9f3
commit
8e4918ec67
|
@ -17,9 +17,9 @@ from django.contrib import admin
|
||||||
from django.urls import include, path
|
from django.urls import include, path
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("", include("shiftregister.pages.urls")),
|
|
||||||
path("", include("shiftregister.metrics.urls")),
|
path("", include("shiftregister.metrics.urls")),
|
||||||
path("", include("shiftregister.app.urls")),
|
path("", include("shiftregister.app.urls")),
|
||||||
|
path("", include("shiftregister.pages.urls")),
|
||||||
path("team/", include("shiftregister.team.urls")),
|
path("team/", include("shiftregister.team.urls")),
|
||||||
path("team/", include("shiftregister.signage.urls")),
|
path("team/", include("shiftregister.signage.urls")),
|
||||||
path("admin/", admin.site.urls),
|
path("admin/", admin.site.urls),
|
||||||
|
|
Loading…
Reference in New Issue