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