X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=sf_t3d%2Furls.py;h=a908c13a1798e198b7912bf28b4669c7ba63c7a5;hb=c1e3d672556a859371f2586d6e512bfb708b7561;hp=bea83a2ff1d62322c5d69dfeaaed627d94f325ad;hpb=a03da5e2aab552daa3e7ced70b3e90466c7c8b82;p=osm%2FLW-UI.git diff --git a/sf_t3d/urls.py b/sf_t3d/urls.py index bea83a2..a908c13 100644 --- a/sf_t3d/urls.py +++ b/sf_t3d/urls.py @@ -1,36 +1,39 @@ -"""sf_t3d URL Configuration +# +# Copyright 2018 EveryUP Srl +# +# 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 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. +# -The `urlpatterns` list routes URLs to views. For more information please see: - https://docs.djangoproject.com/en/1.9/topics/http/urls/ -Examples: -Function views - 1. Add an import: from my_app import views - 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') -Class-based views - 1. Add an import: from other_app.views import Home - 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') -Including another URLconf - 1. Add an import: from blog import urls as blog_urls - 2. Import the include() function: from django.conf.urls import url, include - 3. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls)) -""" from django.conf.urls import url, include -from django.contrib import admin -from sf_user import views as user_views +from authosm import views as user_views from sf_t3d import views app_name = 'base' urlpatterns = [ - url(r'^admin/', admin.site.urls), - url(r'^auth/$', user_views.login_view, name='auth_user'), - url(r'^auth_guest/$', user_views.guest_login, name='auth_user_guest'), - url(r'^register', user_views.register_view, name='register_user'), - url(r'^projects/', include('projecthandler.urls.project', namespace='projects'), name='projects_base'), - url(r'^vims/', include('vimhandler.urls', namespace='vim'), name='vims_base'), - #url(r'^sdn/', include('sdnctrlhandler.urls', namespace='sdn'), name='sdns_base'), - url(r'^$', views.home, name='home'), url(r'^home', views.home, name='home'), + url(r'^auth/$', user_views.user_login, name='auth_user'), + url(r'^projects/', include('projecthandler.urls.project', namespace='projects'), name='projects_base'), + url(r'^sdn/', include('sdnctrlhandler.urls', namespace='sdns'), name='sdns_base'), + url(r'^vims/', include('vimhandler.urls', namespace='vims'), name='vims_base'), + url(r'^k8scluster/', include('k8sclusterhandler.urls', namespace='k8sc'), name='k8sc_base'), + url(r'^k8srepo/', include('k8srepohandler.urls', namespace='k8sr'), name='k8sr_base'), + url(r'^wims/', include('wimhandler.urls', namespace='wims'), name='wims_base'), + url(r'^packages/', include('packagehandler.urls', namespace='packages'), name='packages_base'), + url(r'^instances/', include('instancehandler.urls', namespace='instances'), name='instances_base'), + url(r'^netslices/', include('netslicehandler.urls', namespace='netslices'), name='netslices_base'), + url(r'^admin/users/', include('userhandler.urls', namespace='users'), name='users_base'), + url(r'^admin/roles/', include('rolehandler.urls', namespace='roles'), name='roles_base'), url(r'^forbidden', views.forbidden, name='forbidden'), ]