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

9 lines
240 B
Python

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