Update migration page

Update migration to add styling. Also, use django template and context
to inject variables into the migration page.

See: https://github.com/ansible/awx/issues/8355
This commit is contained in:
nixocio
2021-01-11 15:23:40 -05:00
parent 88cd154c97
commit 3f5e1518ee
8 changed files with 65 additions and 22 deletions

View File

@@ -262,6 +262,7 @@ TEMPLATES = [
'DIRS': [
os.path.join(BASE_DIR, 'templates'),
os.path.join(BASE_DIR, 'ui_next', 'build'),
os.path.join(BASE_DIR, 'ui_next', 'public')
],
},
]
@@ -289,6 +290,7 @@ INSTALLED_APPS = [
'awx.main',
'awx.api',
'awx.ui',
'awx.ui_next',
'awx.sso',
'solo'
]