2
0
Fork 0

Fix URLconf

This commit is contained in:
Luca 2023-04-21 21:45:17 +02:00
parent 6899b9b9f3
commit 8e4918ec67
1 changed files with 1 additions and 1 deletions

View File

@ -17,9 +17,9 @@ from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path("", include("shiftregister.pages.urls")),
path("", include("shiftregister.metrics.urls")),
path("", include("shiftregister.app.urls")),
path("", include("shiftregister.pages.urls")),
path("team/", include("shiftregister.team.urls")),
path("team/", include("shiftregister.signage.urls")),
path("admin/", admin.site.urls),