From 1a0ca0117a92bba1fa6068b64e5b7a0a78b77a2f Mon Sep 17 00:00:00 2001 From: realaravinth Date: Fri, 17 Jun 2022 16:03:05 +0530 Subject: [PATCH] feat: init dash app --- dashboard/settings.py | 1 + dashboard/urls.py | 1 + 2 files changed, 2 insertions(+) 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")), ]