Skip to content

Commit 9760d31

Browse files
committed
Remove unused admin ui
1 parent 7aaf635 commit 9760d31

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

lung_cancer_screening/settings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def list_env(key):
4343
# Application definition
4444

4545
INSTALLED_APPS = [
46-
'django.contrib.admin',
4746
'django.contrib.auth',
4847
'django.contrib.contenttypes',
4948
"django.forms",

lung_cancer_screening/urls.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@
1414
1. Import the include() function: from django.urls import include, path
1515
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
1616
"""
17-
from django.contrib import admin
1817
from django.urls import path, include
1918

2019
urlpatterns = [
2120
path('', include(
2221
("lung_cancer_screening.questions.urls", "questions"),
23-
namespace="questions")),
24-
path('admin/', admin.site.urls),
22+
namespace="questions"))
2523
]

0 commit comments

Comments
 (0)