summaryrefslogtreecommitdiff
path: root/app/posts/urls/trip_urls.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2025-01-04 16:38:17 -0600
committerluxagraf <sng@luxagraf.net>2025-01-04 16:38:17 -0600
commit33cf413ce780efd1b7d3626fa75147e15168a241 (patch)
tree810f49fdc877ecc4a96bd08826f9430808f9d70e /app/posts/urls/trip_urls.py
parentfe7d43f308bbc3953d4a88480b8088d12cbcb0b6 (diff)
posts: got rid of some old url patterns I don't useHEADmaster
Diffstat (limited to 'app/posts/urls/trip_urls.py')
-rw-r--r--app/posts/urls/trip_urls.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/posts/urls/trip_urls.py b/app/posts/urls/trip_urls.py
deleted file mode 100644
index 7e9c95f..0000000
--- a/app/posts/urls/trip_urls.py
+++ /dev/null
@@ -1,25 +0,0 @@
-from django.urls import path, re_path, include
-from django.views.generic.base import RedirectView
-
-from ..views import trip_views as views
-
-app_name = "trips"
-
-urlpatterns = [
- path(
- r'<str:slug>',
- views.TripDetailView.as_view(),
- name="detail"
- ),
- path(
- r'<int:page>/',
- views.TripListView.as_view(),
- name="list"
- ),
- path(
- r'',
- views.TripListView.as_view(),
- {'page':1},
- name="list"
- ),
-]