sahara-dashboard/saharadashboard/nodegroup_templates/urls.py
Sergey Lukjanov 2dfd0df3e3 Add support for Django 1.6
The django.conf.urls.defaults module has been removed in Django 1.6.
The functions include(), patterns() and url() plus handler404,
handler500, are now available through django.conf.urls.

https://docs.djangoproject.com/en/dev/internals/deprecation/

Change-Id: I8d9265e1455d0111edf7596552fa00a3d0b2a97c
Closes-Bug: #1291953
2014-03-13 16:18:00 +04:00

45 lines
1.9 KiB
Python

# Copyright (c) 2013 Mirantis Inc.
#
# 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.
import saharadashboard.nodegroup_templates.views as views
from saharadashboard.utils import importutils
urls = importutils.import_any('django.conf.urls.defaults',
'django.conf.urls')
patterns = urls.patterns
url = urls.url
urlpatterns = patterns('savanna.nodegroup_templates.views',
url(r'^$', views.NodegroupTemplatesView.as_view(),
name='index'),
url(r'^nodegroup-templates$',
views.NodegroupTemplatesView.as_view(),
name='nodegroup-templates'),
url(r'^create-nodegroup-template$',
views.CreateNodegroupTemplateView.as_view(),
name='create-nodegroup-template'),
url(r'^configure-nodegroup-template$',
views.ConfigureNodegroupTemplateView.as_view(),
name='configure-nodegroup-template'),
url(r'^(?P<template_id>[^/]+)$',
views.NodegroupTemplateDetailsView.as_view(),
name='details'),
url(r'^(?P<template_id>[^/]+)/copy$',
views.CopyNodegroupTemplateView.as_view(),
name='copy')
)