diff --git a/cmsmanage/urls.py b/cmsmanage/urls.py index f792b75..0cd2fce 100644 --- a/cmsmanage/urls.py +++ b/cmsmanage/urls.py @@ -13,6 +13,7 @@ Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ + from django.conf import settings from django.contrib import admin from django.contrib.auth.views import LoginView, LogoutView diff --git a/manage.py b/manage.py index 30c29c9..2865f80 100755 --- a/manage.py +++ b/manage.py @@ -1,5 +1,6 @@ #!/usr/bin/env python """Django's command-line utility for administrative tasks.""" + import os import sys