8 lines
294 B
Python
8 lines
294 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext as _
|
|
|
|
|
|
class InterventionConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'nervtn.server.apps.intervention'
|
|
verbose_name = _('Nerv Tales Network - Intervention management')
|