summaryrefslogtreecommitdiff
path: root/app/unused_apps/sketches/urls.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
committerluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
commitab8055b5cab2523d925f59c65bc38df103a26991 (patch)
tree29e4597bc0d86d658f574c0c4f0b036351a68742 /app/unused_apps/sketches/urls.py
parent87f692178a6e30719c564076f00c206642f36ce6 (diff)
deleted old apps and media
Diffstat (limited to 'app/unused_apps/sketches/urls.py')
-rw-r--r--app/unused_apps/sketches/urls.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/app/unused_apps/sketches/urls.py b/app/unused_apps/sketches/urls.py
deleted file mode 100644
index 465a0d2..0000000
--- a/app/unused_apps/sketches/urls.py
+++ /dev/null
@@ -1,39 +0,0 @@
-from django.urls import path, re_path
-
-from . import views
-
-app_name = "sketches"
-
-urlpatterns = [
- re_path(
- r'(?P<year>[0-9]{4})/$',
- views.SketchYearArchiveView.as_view(),
- name="list_year"
- ),
- path(
- r'',
- views.SketchListView.as_view(),
- {'page': 1},
- name="list"
- ),
- path(
- r'<int:page>/',
- views.SketchListView.as_view(),
- name="list"
- ),
- path(
- r'<int:year>/<int:month>/<str:slug>.txt',
- views.SketchDetailViewTXT.as_view(),
- name="detail-txt"
- ),
- path(
- r'<int:year>/<int:month>/<str:slug>',
- views.SketchDetailView.as_view(),
- name="detail"
- ),
- path(
- r'<int:year>/<int:month>/',
- views.SketchMonthArchiveView.as_view(month_format='%m'),
- name="list_month"
- ),
-]