d861d6848b
This patch adds the breadcrumb navigation to the final few details pages: Users, Load Balancers, Projects, Hypervisors. - Small redesigns the Load Balancer page to make the Member/Monitor listings more readable - Small redesign of Monitor Details to make Pools list more readable - Adds missing translation wrapper to subnets breadcrumb At this point, all Details pages should now use the breadcrumb format, with the exception of Network Details, which is waiting on https://bugs.launchpad.net/horizon/+bug/1416838 Closes-Bug: 1413823 Closes-Bug: 1100318 Change-Id: I3a1de6d24dfd49ae2e28107e9de76bbd9d972162
52 lines
2.4 KiB
Python
52 lines
2.4 KiB
Python
# 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'^\?tab=lbtabs__members$', views.IndexView.as_view(), name='members'),
|
|
url(r'^\?tab=lbtabs__monitors$',
|
|
views.IndexView.as_view(), name='monitors'),
|
|
url(r'^addpool$', views.AddPoolView.as_view(), name='addpool'),
|
|
url(r'^updatepool/(?P<pool_id>[^/]+)/$',
|
|
views.UpdatePoolView.as_view(), name='updatepool'),
|
|
url(r'^addvip/(?P<pool_id>[^/]+)/$',
|
|
views.AddVipView.as_view(), name='addvip'),
|
|
url(r'^updatevip/(?P<vip_id>[^/]+)/$',
|
|
views.UpdateVipView.as_view(), name='updatevip'),
|
|
url(r'^addmember$', views.AddMemberView.as_view(), name='addmember'),
|
|
url(r'^updatemember/(?P<member_id>[^/]+)/$',
|
|
views.UpdateMemberView.as_view(), name='updatemember'),
|
|
url(r'^addmonitor$', views.AddMonitorView.as_view(), name='addmonitor'),
|
|
url(r'^updatemonitor/(?P<monitor_id>[^/]+)/$',
|
|
views.UpdateMonitorView.as_view(), name='updatemonitor'),
|
|
url(r'^association/add/(?P<pool_id>[^/]+)/$',
|
|
views.AddPMAssociationView.as_view(), name='addassociation'),
|
|
url(r'^association/delete/(?P<pool_id>[^/]+)/$',
|
|
views.DeletePMAssociationView.as_view(), name='deleteassociation'),
|
|
url(r'^pool/(?P<pool_id>[^/]+)/$',
|
|
views.PoolDetailsView.as_view(), name='pooldetails'),
|
|
url(r'^vip/(?P<vip_id>[^/]+)/$',
|
|
views.VipDetailsView.as_view(), name='vipdetails'),
|
|
url(r'^member/(?P<member_id>[^/]+)/$',
|
|
views.MemberDetailsView.as_view(), name='memberdetails'),
|
|
url(r'^monitor/(?P<monitor_id>[^/]+)/$',
|
|
views.MonitorDetailsView.as_view(), name='monitordetails'))
|