
This commit allows admin to perform the following table action : 1. manage volumes (Add/remove volumes from group), 2. remove all volumes from group 3. delete group Partially-Implements blueprint cinder-generic-volume-groups Change-Id: I7fcc0dfa8195ecb7914a883fec85c573caa4ae86
25 lines
883 B
Python
25 lines
883 B
Python
# Copyright 2019 NEC Corporation
|
|
#
|
|
# 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.project.volume_groups \
|
|
import forms as project_forms
|
|
|
|
|
|
class RemoveVolsForm(project_forms.RemoveVolsForm):
|
|
failure_url = 'horizon:admin:volume_groups:index'
|
|
|
|
|
|
class DeleteForm(project_forms.DeleteForm):
|
|
failure_url = 'horizon:admin:volume_groups:index'
|