diff options
Diffstat (limited to 'app/unused_apps/essays/urls.py')
-rw-r--r-- | app/unused_apps/essays/urls.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/app/unused_apps/essays/urls.py b/app/unused_apps/essays/urls.py deleted file mode 100644 index 8216f06..0000000 --- a/app/unused_apps/essays/urls.py +++ /dev/null @@ -1,28 +0,0 @@ -from django.urls import path, re_path - -from . import views - -app_name = "essays" - -urlpatterns = [ - #path( - # r'topic/<str:slug>', - # views.TopicListView.as_view(), - # name="list_topics" - #), - path( - r'<str:slug>', - views.EntryDetailView.as_view(), - name="detail" - ), - path( - r'<str:slug>', - views.EntryDetailViewTXT.as_view(), - name="detail-txt" - ), - path( - r'', - views.EssayListView.as_view(), - name="list", - ), -] |