summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/group_types/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/admin/group_types/urls.py')
-rw-r--r--openstack_dashboard/dashboards/admin/group_types/urls.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/openstack_dashboard/dashboards/admin/group_types/urls.py b/openstack_dashboard/dashboards/admin/group_types/urls.py
index 543b86e45..09bc9fa6c 100644
--- a/openstack_dashboard/dashboards/admin/group_types/urls.py
+++ b/openstack_dashboard/dashboards/admin/group_types/urls.py
@@ -11,7 +11,7 @@
# under the License.
from django.conf.urls import include
-from django.conf.urls import url
+from django.urls import re_path
from openstack_dashboard.dashboards.admin.group_types.specs \
import urls as specs_urls
@@ -20,12 +20,12 @@ from openstack_dashboard.dashboards.admin.group_types \
urlpatterns = [
- url(r'^$', views.GroupTypesView.as_view(), name='index'),
- url(r'^create_type$', views.CreateGroupTypeView.as_view(),
- name='create_type'),
- url(r'^(?P<type_id>[^/]+)/update_type/$',
- views.EditGroupTypeView.as_view(),
- name='update_type'),
- url(r'^(?P<type_id>[^/]+)/specs/',
- include((specs_urls, 'specs'))),
+ re_path(r'^$', views.GroupTypesView.as_view(), name='index'),
+ re_path(r'^create_type$', views.CreateGroupTypeView.as_view(),
+ name='create_type'),
+ re_path(r'^(?P<type_id>[^/]+)/update_type/$',
+ views.EditGroupTypeView.as_view(),
+ name='update_type'),
+ re_path(r'^(?P<type_id>[^/]+)/specs/',
+ include((specs_urls, 'specs'))),
]