# Copyright 2015 Objectif Libre # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. from django.conf.urls import patterns from django.conf.urls import url from cloudkittydashboard.dashboards.admin.hashmap import views urlpatterns = patterns( '', url(r'^$', views.IndexView.as_view(), name='index'), url(r'^service/(?P[^/]+)/?$', views.ServiceView.as_view(), name='service'), url(r'^create_service/?$', views.ServiceCreateView.as_view(), name='service_create'), url(r'^field/(?P[^/]+)/?$', views.FieldView.as_view(), name='field'), url(r'^group/(?P[^/]+)/?$', views.GroupView.as_view(), name='group'), url(r'^service_threshold/(?P[^/]+)/?$', views.ServiceThresholdView.as_view(), name='service_threshold'), url(r'^field_threshold/(?P[^/]+)/?$', views.FieldThresholdView.as_view(), name='field_threshold'), url(r'^create_field/service/(?P[^/]+)/?$', views.FieldCreateView.as_view(), name='field_create'), url(r'^create_group/(?P[^/]+)/?$', views.GroupCreateView.as_view(), name='group_create'), url(r'^create_threshold/service/(?P[^/]+)/?$', views.ServiceThresholdCreateView.as_view(), name='service_threshold_create'), url(r'^create_threshold/field/(?P[^/]+)/?$', views.FieldThresholdCreateView.as_view(), name='field_threshold_create'), url(r'^create_mapping/service/(?P[^/]+)/?$', views.ServiceMappingCreateView.as_view(), name='service_mapping_create'), url(r'^create_mapping/field/(?P[^/]+)/?$', views.FieldMappingCreateView.as_view(), name='field_mapping_create'), url(r'^edit_mapping/service/(?P[^/]+)/?$', views.ServiceMappingEditView.as_view(), name='service_mapping_edit'), url(r'^edit_mapping/field/(?P[^/]+)/?$', views.FieldMappingEditView.as_view(), name='field_mapping_edit'), url(r'^edit_threshold/service/(?P[^/]+)/?$', views.ServiceThresholdEditView.as_view(), name='service_threshold_edit'), url(r'^edit_threshold/field/(?P[^/]+)/?$', views.FieldThresholdEditView.as_view(), name='field_threshold_edit'), )