From 536009589df7d88625b1f2b1cd9786c98f5d4ca9 Mon Sep 17 00:00:00 2001 From: De Lette Date: Mon, 24 Oct 2022 21:46:46 +0000 Subject: [PATCH] Remove traces of the old self. --- plchweb/urls.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plchweb/urls.py b/plchweb/urls.py index 34f9a48..86f4637 100644 --- a/plchweb/urls.py +++ b/plchweb/urls.py @@ -18,9 +18,5 @@ from django.urls import path from base_app.views import IndexView, LoremView, CVView, UkraineView urlpatterns = [ - path('admin/', admin.site.urls), path('', IndexView.as_view()), - path('lorem-ipsum/', LoremView.as_view()), - path('curriculum-vitae/', CVView.as_view()), - path('ukraine/', UkraineView.as_view()), ]