From bcb110c49a4702f82d2e4af439540d21b52b3c33 Mon Sep 17 00:00:00 2001 From: daniel-a-nguyen Date: Fri, 27 Mar 2015 13:02:54 -0700 Subject: [PATCH] Correct the identity groups create url Change-Id: Ie98aacf18316028bffd53f7176a3e9be8d0d7b24 Closes-Bug: #1437479 --- openstack_dashboard/dashboards/identity/groups/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/dashboards/identity/groups/views.py b/openstack_dashboard/dashboards/identity/groups/views.py index 68059bc543..2f0f2d80a6 100644 --- a/openstack_dashboard/dashboards/identity/groups/views.py +++ b/openstack_dashboard/dashboards/identity/groups/views.py @@ -59,8 +59,8 @@ class CreateView(forms.ModalFormView): modal_header = _("Create Group") form_id = "create_group_form" form_class = project_forms.CreateGroupForm - submit_url = "horizon:identity:groups:create" submit_label = _("Create Group") + submit_url = reverse_lazy(constants.GROUPS_CREATE_URL) success_url = reverse_lazy(constants.GROUPS_INDEX_URL) page_title = _("Create Group")