79ff0d45c4
This patch adds a tab for cinder user messages for volumes and snapshots. Cinder user messages shows error details for cinder resources like if we are unable to create a volume due to some failure in cinder it will shows us the reason of failure. Implements blueprint cinder-user-facing-messages Change-Id: I6f1539ffebdf2dfd0a470009e9171e868c2a9ad3
45 lines
1.6 KiB
Python
45 lines
1.6 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 tables as vol_messages_tables
|
|
from openstack_dashboard.dashboards.project.volumes import tabs as project_tabs
|
|
|
|
|
|
class OverviewTab(project_tabs.OverviewTab):
|
|
template_name = ("admin/volumes/_detail_overview.html")
|
|
|
|
def get_context_data(self, request):
|
|
volume = self.tab_group.kwargs['volume']
|
|
return {
|
|
'volume': volume,
|
|
'group': volume.group,
|
|
'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 VolumeMessagesTab(project_tabs.VolumeMessagesTab):
|
|
table_classes = (vol_messages_tables.VolumeMessagesTable,)
|
|
|
|
|
|
class VolumeDetailTabs(project_tabs.VolumeDetailTabs):
|
|
tabs = (OverviewTab, SnapshotTab, VolumeMessagesTab)
|