Merge "update the huawei's lab"
[pharos.git] / tools / pharos-dashboard / src / booking / urls.py
1 ##############################################################################
2 # Copyright (c) 2016 Max Breitenfeldt and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10
11 """pharos_dashboard URL Configuration
12
13 The `urlpatterns` list routes URLs to views. For more information please see:
14     https://docs.djangoproject.com/en/1.10/topics/http/urls/
15 Examples:
16 Function views
17     1. Add an import:  from my_app import views
18     2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')
19 Class-based views
20     1. Add an import:  from other_app.views import Home
21     2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')
22 Including another URLconf
23     1. Import the include() function: from django.conf.urls import url, include
24     2. Add a URL to urlpatterns:  url(r'^blog/', include('blog.urls'))
25 """
26 from django.conf.urls import url
27
28 from booking.views import *
29
30 urlpatterns = [
31     url(r'^(?P<resource_id>[0-9]+)/$', BookingFormView.as_view(), name='create'),
32     url(r'^(?P<resource_id>[0-9]+)/bookings_json/$', ResourceBookingsJSON.as_view(),
33         name='bookings_json'),
34
35     url(r'^detail/$', BookingView.as_view(), name='detail_prefix'),
36     url(r'^detail/(?P<booking_id>[0-9]+)/$', BookingView.as_view(), name='detail'),
37 ]