mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 14:38:00 -03:30
15 lines
250 B
Python
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')
|
|
]
|