mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 12:41:19 -03:30
10 lines
176 B
Python
10 lines
176 B
Python
# Django
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class UIConfig(AppConfig):
|
|
|
|
name = 'awx.ui'
|
|
verbose_name = _('UI')
|