diff --git a/solumdashboard/applications/urls.py b/solumdashboard/applications/urls.py index 170b4a6..dff5364 100644 --- a/solumdashboard/applications/urls.py +++ b/solumdashboard/applications/urls.py @@ -13,21 +13,21 @@ # See the License for the specific language governing permissions and # limitations under the License. -from django.conf.urls import url +from django.urls import re_path import solumdashboard.applications.views as views urlpatterns = [ - url(r'^$', views.IndexView.as_view(), name='index'), - url(r'^$', views.IndexView.as_view(), name='applications'), - url(r'^create$', views.CreateView.as_view(), name='create'), - url(r'^launch/(?P[^/]+)$', views.LaunchView.as_view(), - name='launch'), - url(r'^detail/(?P[^/]+)$', - views.DetailView.as_view(), name='detail'), - url(r'^scale/(?P[^/]+)$', views.ScaleView.as_view(), - name='scale'), - url(r'^update/(?P[^/]+)$', views.UpdateView.as_view(), - name='update') + re_path(r'^$', views.IndexView.as_view(), name='index'), + re_path(r'^$', views.IndexView.as_view(), name='applications'), + re_path(r'^create$', views.CreateView.as_view(), name='create'), + re_path(r'^launch/(?P[^/]+)$', views.LaunchView.as_view(), + name='launch'), + re_path(r'^detail/(?P[^/]+)$', + views.DetailView.as_view(), name='detail'), + re_path(r'^scale/(?P[^/]+)$', views.ScaleView.as_view(), + name='scale'), + re_path(r'^update/(?P[^/]+)$', views.UpdateView.as_view(), + name='update') ] diff --git a/solumdashboard/assemblies/urls.py b/solumdashboard/assemblies/urls.py index 9a4ca92..3a6da7b 100644 --- a/solumdashboard/assemblies/urls.py +++ b/solumdashboard/assemblies/urls.py @@ -13,13 +13,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -from django.conf.urls import url +from django.urls import re_path import solumdashboard.assemblies.views as views urlpatterns = [ - url(r'^$', views.IndexView.as_view(), name='index'), - url(r'^$', views.IndexView.as_view(), name='assemblies'), - url(r'^(?P[^/]+)$', views.DetailView.as_view(), name='detail') + re_path(r'^$', views.IndexView.as_view(), name='index'), + re_path(r'^$', views.IndexView.as_view(), name='assemblies'), + re_path(r'^(?P[^/]+)$', views.DetailView.as_view(), + name='detail') ] diff --git a/solumdashboard/languagepacks/urls.py b/solumdashboard/languagepacks/urls.py index 46733b9..8ae2e2e 100644 --- a/solumdashboard/languagepacks/urls.py +++ b/solumdashboard/languagepacks/urls.py @@ -13,14 +13,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -from django.conf.urls import url +from django.urls import re_path from solumdashboard.languagepacks import views urlpatterns = [ - url(r'^$', views.IndexView.as_view(), name='index'), - url(r'^$', views.IndexView.as_view(), name='languagepacks'), - url(r'^detail/(?P[^/]+)$', - views.DetailView.as_view(), name='detail'), - url(r'^create$', views.CreateView.as_view(), name='create') + re_path(r'^$', views.IndexView.as_view(), name='index'), + re_path(r'^$', views.IndexView.as_view(), name='languagepacks'), + re_path(r'^detail/(?P[^/]+)$', + views.DetailView.as_view(), name='detail'), + re_path(r'^create$', views.CreateView.as_view(), name='create') ]