horizon/openstack_dashboard/dashboards/identity/ngusers/urls.py
Thai Tran 24e57ef376 Adding identity ng-users panel
This sets up the python side of the users panel.
We need to do this since a panel still needs to inherit from base.html
and navigation is still tightly coupled with Dashboard.

This provides a cleaner way to phase out the old users panel.
This ensures that integration tests does not break until we are ready to
replace the old panel.

To test set DISABLED to False in _250_identity_users_panel.py

Change-Id: Ied6db285ccac0d70a7be4cb1e795b1a2c9058c19
Partially-Implemenents: blueprint angularize-identity-tables
2015-07-01 17:34:57 -07:00

25 lines
859 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.urls import patterns
from django.conf.urls import url
from openstack_dashboard.dashboards.identity.ngusers import views
urlpatterns = patterns(
'openstack_dashboard.dashboards.identity.ngusers.views',
url(r'^$', views.IndexView.as_view(), name='index'),
)