Files
horizon/openstack_dashboard/dashboards/admin/volumes/tabs.py
Akihiro Motoki 17b7e91472 Show volume snapshots in admin volume detail page
To show volume snapshots from different projects,
we need to specify all_tenants=True to the list operation.

Also fixes an issue that the actions in the snapshots table
in the admin volume detail page refer to the project dashboard.

Change-Id: I8dc50625e0e84fd2ce81d731bd54cbd0e08b100d
Closes-Bug: #1733186
2017-12-11 17:38:25 +09:00

36 lines
1.3 KiB
Python

# 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 openstack_dashboard.dashboards.admin.snapshots import tables
from openstack_dashboard.dashboards.project.volumes import tabs as project_tabs
class OverviewTab(project_tabs.OverviewTab):
def get_context_data(self, request):
return {
'volume': self.tab_group.kwargs['volume'],
'detail_url': {
'instance': 'horizon:admin:instances:detail',
'image': 'horizon:admin:images:detail',
'encryption': 'horizon:admin:volumes:encryption_detail',
}
}
class SnapshotTab(project_tabs.SnapshotTab):
table_classes = (tables.VolumeDetailsSnapshotsTable,)
class VolumeDetailTabs(project_tabs.VolumeDetailTabs):
tabs = (OverviewTab, SnapshotTab)