Merge "project volume group: Fix incorrect reference to cgroup panel"

This commit is contained in:
Zuul 2019-03-26 09:24:54 +00:00 committed by Gerrit Code Review
commit b2453ce92f
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ class CloneGroupForm(forms.SelfHandlingForm):
def handle(self, request, data):
group_id = self.initial['group_id']
try:
message = _('Creating consistency group "%s".') % data['name']
message = _('Cloning volume group "%s".') % data['name']
group = cinder.group_create_from_source(
request,
data['name'],

View File

@ -37,7 +37,7 @@ from openstack_dashboard.dashboards.project.volume_groups \
CGROUP_INFO_FIELDS = ("name",
"description")
INDEX_URL = "horizon:project:cgroups:index"
INDEX_URL = "horizon:project:volume_groups:index"
class IndexView(tables.DataTableView):