blob: 5d9d02a9b91b7da9cc337f375b71ea89b0170a0c [file] [log] [blame]
lombardofr3218b2b2018-10-29 13:41:08 +01001#
2# Copyright 2018 EveryUP Srl
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
lombardoffb37bca2018-05-03 16:20:04 +020016
lombardoffb37bca2018-05-03 16:20:04 +020017from django.conf.urls import url, include
lombardofr099364f2018-06-12 11:21:02 +020018from authosm import views as user_views
lombardoffb37bca2018-05-03 16:20:04 +020019from sf_t3d import views
20
21app_name = 'base'
22urlpatterns = [
lombardoffb37bca2018-05-03 16:20:04 +020023 url(r'^$', views.home, name='home'),
24 url(r'^home', views.home, name='home'),
lombardofr2ad37de2018-07-18 09:47:28 +020025 url(r'^auth/$', user_views.user_login, name='auth_user'),
26 url(r'^projects/', include('projecthandler.urls.project', namespace='projects'), name='projects_base'),
27 url(r'^sdn/', include('sdnctrlhandler.urls', namespace='sdns'), name='sdns_base'),
28 url(r'^vims/', include('vimhandler.urls', namespace='vims'), name='vims_base'),
29 url(r'^instances/', include('instancehandler.urls', namespace='instances'), name='instances_base'),
30 url(r'^admin/users/', include('userhandler.urls', namespace='users'), name='users_base'),
lombardoffb37bca2018-05-03 16:20:04 +020031 url(r'^forbidden', views.forbidden, name='forbidden'),
32
33]