diff --git a/lung_cancer_screening/settings.py b/lung_cancer_screening/settings.py index b2df6e13..9f367c8e 100644 --- a/lung_cancer_screening/settings.py +++ b/lung_cancer_screening/settings.py @@ -43,7 +43,6 @@ def list_env(key): # Application definition INSTALLED_APPS = [ - 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', "django.forms", diff --git a/lung_cancer_screening/urls.py b/lung_cancer_screening/urls.py index 6b4e5287..c580e8bb 100644 --- a/lung_cancer_screening/urls.py +++ b/lung_cancer_screening/urls.py @@ -14,12 +14,10 @@ 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ -from django.contrib import admin from django.urls import path, include urlpatterns = [ path('', include( ("lung_cancer_screening.questions.urls", "questions"), - namespace="questions")), - path('admin/', admin.site.urls), + namespace="questions")) ]