mirror of
https://github.com/ansible/awx.git
synced 2026-02-02 18:18:12 -03:30
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
21 lines
411 B
Python
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'),
|
|
]
|