horizon/horizon/test/test_dashboards/cats/tigers/urls.py

9 lines
230 B
Python

from django.conf.urls import patterns
from django.conf.urls import url
from horizon.test.test_dashboards.cats.tigers.views import IndexView # noqa
urlpatterns = patterns('',
url(r'^$', IndexView.as_view(), name='index'),
)