aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/account/urls.py')
-rw-r--r--src/account/urls.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/account/urls.py b/src/account/urls.py
index 6d4ef2f..23ce122 100644
--- a/src/account/urls.py
+++ b/src/account/urls.py
@@ -35,11 +35,9 @@ from account.views import (
UserListView,
account_resource_view,
account_booking_view,
- account_images_view,
account_detail_view,
template_delete_view,
booking_cancel_view,
- image_delete_view,
)
app_name = 'account'
@@ -53,7 +51,5 @@ urlpatterns = [
path('my/resources/delete/<int:resource_id>', template_delete_view),
url(r'^my/bookings/$', account_booking_view, name='my-bookings'),
path('my/bookings/cancel/<int:booking_id>', booking_cancel_view),
- url(r'^my/images/$', account_images_view, name='my-images'),
- path('my/images/delete/<int:image_id>', image_delete_view),
url(r'^my/$', account_detail_view, name='my-account'),
]