diff --git a/dashboard/settings.py b/dashboard/settings.py index 1ccf9de..de34d7a 100644 --- a/dashboard/settings.py +++ b/dashboard/settings.py @@ -42,6 +42,7 @@ INSTALLED_APPS = [ "django.contrib.messages", "django.contrib.staticfiles", "accounts", + "dash", ] MIDDLEWARE = [ diff --git a/dashboard/urls.py b/dashboard/urls.py index 015f11b..2394c0a 100644 --- a/dashboard/urls.py +++ b/dashboard/urls.py @@ -18,5 +18,6 @@ from django.urls import path, include urlpatterns = [ path("admin/", admin.site.urls), + path("dash/", include("dash.urls")), path("", include("accounts.urls")), ]