Remove traces of the old self.

This commit is contained in:
De Lette 2022-10-24 21:46:46 +00:00
parent cd7691df9e
commit 536009589d
Signed by: dormouse
GPG key ID: 55AE59B937DD3A63

View file

@ -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()),
]