
Creates a set of test dashboards for testing core components so that they're not affected by changes to the OpenStack dashboards which should be completely independent. Fixes bug 999357. Change-Id: I78e70eaf32a639db5c87a3c03377dc2a02d66ad9
8 lines
163 B
Python
8 lines
163 B
Python
from django.conf.urls.defaults import patterns, url
|
|
|
|
from .views import IndexView
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', IndexView.as_view(), name='index'),
|
|
)
|