
As part of the breaking up of Access and Security, move the Key Pairs tab to a new panel under Compute. Separate patches will address Floating IPs, Security Groups, and API Access. Fixes include: - Should be significantly faster to access Key Pairs, as we are no longer running multiple API calls for the other Access & Security tabs at the same time. Hooray for speed! - Should be easier for new users to find where Key Pairs are located. - Reduce reuse of identical translatable strings - Use common templates instead of duplication - Updated policy rules and added missing rules to table get_data - Small cleanup of the Key Pair download page, which was previously using modal classes despite not being a modal. Change-Id: I66f1f65a2cb49bd10e0364b12efba4346f373ed3 Implements: blueprint reorganise-access-and-security
38 lines
1.5 KiB
Python
38 lines
1.5 KiB
Python
# Copyright 2012 United States Government as represented by the
|
|
# Administrator of the National Aeronautics and Space Administration.
|
|
# All Rights Reserved.
|
|
#
|
|
# Copyright 2012 Nebula, 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 include
|
|
from django.conf.urls import url
|
|
|
|
from openstack_dashboard.dashboards.project.access_and_security.\
|
|
api_access import urls as api_access_urls
|
|
from openstack_dashboard.dashboards.project.access_and_security.\
|
|
floating_ips import urls as fip_urls
|
|
from openstack_dashboard.dashboards.project.access_and_security.\
|
|
security_groups import urls as sec_group_urls
|
|
from openstack_dashboard.dashboards.project.access_and_security import views
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
|
url(r'api_access/', include(api_access_urls, namespace='api_access')),
|
|
url(r'floating_ips/', include(fip_urls, namespace='floating_ips')),
|
|
url(r'security_groups/',
|
|
include(sec_group_urls, namespace='security_groups')),
|
|
]
|