bdcd52d47e5c22b9a7da66827eb5cd5ceef89d07
[pharos.git] / tools / pharos-dashboard / booking / urls.py
1 """pharos_dashboard URL Configuration
2
3 The `urlpatterns` list routes URLs to views. For more information please see:
4     https://docs.djangoproject.com/en/1.10/topics/http/urls/
5 Examples:
6 Function views
7     1. Add an import:  from my_app import views
8     2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')
9 Class-based views
10     1. Add an import:  from other_app.views import Home
11     2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')
12 Including another URLconf
13     1. Import the include() function: from django.conf.urls import url, include
14     2. Add a URL to urlpatterns:  url(r'^blog/', include('blog.urls'))
15 """
16 from django.conf.urls import url
17
18 from booking.views import *
19
20 urlpatterns = [
21     url(r'^(?P<resource_id>[0-9]+)/$', BookingFormView.as_view(), name='create'),
22     url(r'^(?P<resource_id>[0-9]+)/bookings_json/$', ResourceBookingsJSON.as_view(),
23         name='bookings_json'),
24
25     url(r'^detail/$', BookingView.as_view(), name='detail_prefix'),
26     url(r'^detail/(?P<booking_id>[0-9]+)/$', BookingView.as_view(), name='detail'),
27 ]