Shu Muto d803f27cce Use common Angular view for Queues panel
This patch uses Horizon's common Angular views module for Queues panel.
Also, breadcrumbs are shown.

Change-Id: Iae5edc9d370fbda20889a043a2574bd034170881
Closes-Bug: #1664374
2017-04-17 05:05:01 +00:00

23 lines
804 B
Python

# Copyright 2015 IBM Corp.
#
# 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 import urls
from horizon.browsers import views
from zaqar_ui.content.queues import panel
title = panel.Queues.name
urlpatterns = [
urls.url(r'^$', views.AngularIndexView.as_view(title=title), name='index'),
]