summaryrefslogtreecommitdiffstats
path: root/dashboard/src/booking/urls.py
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2018-02-19 21:17:12 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-19 21:17:12 +0000
commit55a03a85263a9c4033bdb228418f689d78e38860 (patch)
treebd3fc8dce2c59e0c5f1bccdeb06d7775a16baa37 /dashboard/src/booking/urls.py
parent3b22628fe24ca3b9b9659462af6abaf8fd6601f8 (diff)
parent936a1a26401dc39e12209d9ff94404351a646d17 (diff)
Merge "Provide Interface for Booking Deletion"
Diffstat (limited to 'dashboard/src/booking/urls.py')
-rw-r--r--dashboard/src/booking/urls.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/dashboard/src/booking/urls.py b/dashboard/src/booking/urls.py
index 403e32f..ed3b1d4 100644
--- a/dashboard/src/booking/urls.py
+++ b/dashboard/src/booking/urls.py
@@ -30,11 +30,17 @@ from booking.views import *
urlpatterns = [
url(r'^(?P<resource_id>[0-9]+)/$', BookingFormView.as_view(), name='create'),
url(r'^(?P<resource_id>[0-9]+)/edit/(?P<booking_id>[0-9]+)/$', BookingEditFormView.as_view(), name='edit'),
+
url(r'^(?P<resource_id>[0-9]+)/bookings_json/$', ResourceBookingsJSON.as_view(),
name='bookings_json'),
url(r'^detail/$', BookingView.as_view(), name='detail_prefix'),
url(r'^detail/(?P<booking_id>[0-9]+)/$', BookingView.as_view(), name='detail'),
+ url(r'^delete/$', BookingDeleteView.as_view(), name='delete_prefix'),
+ url(r'^delete/(?P<booking_id>[0-9]+)/$', BookingDeleteView.as_view(), name='delete'),
+
+ url(r'^delete/(?P<booking_id>[0-9]+)/confirm/$', bookingDelete, name='delete_booking'),
+
url(r'^list/$', BookingListView.as_view(), name='list')
-]
+] \ No newline at end of file