awx/awx/ui_next/urls.py
2020-06-25 08:56:21 -04:00

15 lines
250 B
Python

from django.conf.urls import url
from django.views.generic.base import TemplateView
class IndexView(TemplateView):
template_name = 'index.html'
app_name = 'ui_next'
urlpatterns = [
url(r'^next/*', IndexView.as_view(), name='ui_next')
]