
This is a part of a larger patch, split to make it less confusing. This patch deals with moving the files into the "deployment/" directory. Make the file structure of the source reflect the logical structure of the application (and its menus) by grouping related panels into packages. This gives us a place to put common code shared by those panels, and lets us find the source code for a specific panel based on where it is in the menu. Because Horizon was not initially designed for autodiscovery of panels that are not immediate children of the dashboard, the URLs of those panels will have the form of /infrastructure/resources.archived/. That can be amended by a simple patch to Horizon later on. Change-Id: I8df74ac8c8ffb913b9e653f049f64d725c4e32d3
24 lines
811 B
Python
24 lines
811 B
Python
# -*- coding: utf8 -*-
|
|
#
|
|
# 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.
|
|
|
|
from django.conf.urls import defaults
|
|
|
|
from tuskar_ui.infrastructure.deployment.overview import views
|
|
|
|
|
|
urlpatterns = defaults.patterns(
|
|
'',
|
|
defaults.url(r'^$', views.IndexView.as_view(), name='index'),
|
|
)
|