# Copyright 2013, Big Switch Networks, Inc. # # 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 openstack_dashboard.dashboards.project.loadbalancers import views urlpatterns = patterns( 'openstack_dashboard.dashboards.project.loadbalancers.views', url(r'^$', views.IndexView.as_view(), name='index'), url(r'^addpool$', views.AddPoolView.as_view(), name='addpool'), url(r'^updatepool/(?P[^/]+)/$', views.UpdatePoolView.as_view(), name='updatepool'), url(r'^addvip/(?P[^/]+)/$', views.AddVipView.as_view(), name='addvip'), url(r'^updatevip/(?P[^/]+)/$', views.UpdateVipView.as_view(), name='updatevip'), url(r'^addmember$', views.AddMemberView.as_view(), name='addmember'), url(r'^updatemember/(?P[^/]+)/$', views.UpdateMemberView.as_view(), name='updatemember'), url(r'^addmonitor$', views.AddMonitorView.as_view(), name='addmonitor'), url(r'^updatemonitor/(?P[^/]+)/$', views.UpdateMonitorView.as_view(), name='updatemonitor'), url(r'^association/add/(?P[^/]+)/$', views.AddPMAssociationView.as_view(), name='addassociation'), url(r'^association/delete/(?P[^/]+)/$', views.DeletePMAssociationView.as_view(), name='deleteassociation'), url(r'^pool/(?P[^/]+)/$', views.PoolDetailsView.as_view(), name='pooldetails'), url(r'^vip/(?P[^/]+)/$', views.VipDetailsView.as_view(), name='vipdetails'), url(r'^member/(?P[^/]+)/$', views.MemberDetailsView.as_view(), name='memberdetails'), url(r'^monitor/(?P[^/]+)/$', views.MonitorDetailsView.as_view(), name='monitordetails'))