Files
awx/awx/ui_next/urls.py
Jake McDermott 704029459f Place some initial files for migration view
This restores some of the original files and routes from the migration
view of the classic ui with the eventual goal of fully reintegrating this
system with the new ui.

See: b39db745d4
2020-12-10 11:00:43 -05:00

21 lines
411 B
Python

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