mirror of
https://github.com/ansible/awx.git
synced 2026-01-28 00:51:27 -03:30
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
11 lines
191 B
Python
11 lines
191 B
Python
# Django
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class UINextConfig(AppConfig):
|
|
|
|
name = 'awx.ui_next'
|
|
verbose_name = _('UI_Next')
|
|
|