We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aaf635 commit 9760d31Copy full SHA for 9760d31
lung_cancer_screening/settings.py
@@ -43,7 +43,6 @@ def list_env(key):
43
# Application definition
44
45
INSTALLED_APPS = [
46
- 'django.contrib.admin',
47
'django.contrib.auth',
48
'django.contrib.contenttypes',
49
"django.forms",
lung_cancer_screening/urls.py
@@ -14,12 +14,10 @@
14
1. Import the include() function: from django.urls import include, path
15
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
16
"""
17
-from django.contrib import admin
18
from django.urls import path, include
19
20
urlpatterns = [
21
path('', include(
22
("lung_cancer_screening.questions.urls", "questions"),
23
- namespace="questions")),
24
- path('admin/', admin.site.urls),
+ namespace="questions"))
25
]
0 commit comments