From fe7d43f308bbc3953d4a88480b8088d12cbcb0b6 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Fri, 3 Jan 2025 18:46:40 -0600 Subject: archived old not used apps --- app/resume/urls.py | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 app/resume/urls.py (limited to 'app/resume/urls.py') diff --git a/app/resume/urls.py b/app/resume/urls.py deleted file mode 100644 index de95866..0000000 --- a/app/resume/urls.py +++ /dev/null @@ -1,48 +0,0 @@ -from django.urls import path, re_path -from django.views.generic.base import RedirectView - -from . import views - -app_name = "resume" - -urlpatterns = [ - path( - r'pubs///', - views.ByPublisherListView.as_view(), - name='list_by_publisher', - ), - path( - r'pubs//', - views.ByPublisherListView.as_view(), - {'page': 1}, - name='list_by_publisher', - ), - path( - r'pubs//', - views.PublisherListView.as_view(), - name='list', - ), - path( - r'pubs/', - views.PublisherListView.as_view(), - {'page': 1}, - name="list" - ), - path( - r'pubs//', - views.PubItemDetailView.as_view(), - name='detail', - ), - path( - r'/', - views.PageView.as_view(), - {'path': 'work'}, - name="pages" - ), - path( - r'', - views.PageView.as_view(), - {'path': 'work', 'slug': 'profile'}, - name="pages" - ), -] -- cgit v1.2.3