summaryrefslogtreecommitdiff
path: root/app/photos/detail_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/photos/detail_urls.py
parent87f692178a6e30719c564076f00c206642f36ce6 (diff)
deleted old apps and media
Diffstat (limited to 'app/photos/detail_urls.py')
-rw-r--r--app/photos/detail_urls.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/photos/detail_urls.py b/app/photos/detail_urls.py
deleted file mode 100644
index 0ab94f6..0000000
--- a/app/photos/detail_urls.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from django.conf.urls import url
-from django.views.generic.detail import DetailView
-from photos.models import Photo
-
-urlpatterns = [
- url(
- r'^(?P<object_id>\d+)/$',
- DetailView.as_view(model=Photo, template_name='details/photo.html')
- ),
-]