
Enable display of trunks on the project dashboard. To test it devstack needs to have neutron with trunk support, eg: local.conf: enable_plugin neutron https://git.openstack.org/openstack/neutron enable_service q-trunk No special horizon config is needed. As long as the 'trunk' API extension is available (openstack extension show trunk) the panel should automatically appear under Project/Network/Trunks. Co-Authored-By: Akihiro Motoki <amotoki@gmail.com> Co-Authored-By: Bence Romsics <bence.romsics@ericsson.com> Change-Id: Iacb83f22f81e09457953622e61065f0bb2c27407 Partially-Implements: blueprint neutron-trunk-ui
25 lines
852 B
Python
25 lines
852 B
Python
# Copyright 2017 Ericsson
|
|
#
|
|
# 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 url
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from horizon.browsers.views import AngularIndexView
|
|
|
|
|
|
title = _("Trunks")
|
|
urlpatterns = [
|
|
url(r'^$', AngularIndexView.as_view(title=title), name='index'),
|
|
]
|