horizon/openstack_dashboard/dashboards/project/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

60 lines
1.9 KiB
Python

# 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.utils.translation import ugettext_lazy as _
from horizon import tabs
from openstack_dashboard.dashboards.project.snapshots import tables
class OverviewTab(tabs.Tab):
name = _("Overview")
slug = "overview"
template_name = ("project/volumes/_detail_overview.html")
def get_context_data(self, request):
return {
'volume': self.tab_group.kwargs['volume'],
'detail_url': {
'instance': 'horizon:project:instances:detail',
'image': 'horizon:project:images:images:detail',
'encryption': 'horizon:project:volumes:encryption_detail',
}
}
class SnapshotTab(tabs.TableTab):
table_classes = (tables.VolumeDetailsSnapshotsTable,)
name = _("Snapshots")
slug = "snapshots_tab"
template_name = "horizon/common/_detail_table.html"
dashboard = 'project'
preload = False
def get_volume_snapshots_data(self):
snapshots = self.tab_group.kwargs['snapshots']
volume = self.tab_group.kwargs['volume']
if volume is not None:
for snapshot in snapshots:
snapshot._volume = volume
return snapshots
class VolumeDetailTabs(tabs.DetailTabsGroup):
slug = "volume_details"
tabs = (OverviewTab, SnapshotTab)