mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-03 06:31:49 -05:00
10 lines
190 B
Python
10 lines
190 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')
|