22 lines
512 B
Python
22 lines
512 B
Python
"""
|
|
MDT (Multi-Disciplinary Team) app configuration.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class MdtConfig(AppConfig):
|
|
"""Configuration for MDT app."""
|
|
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'mdt'
|
|
verbose_name = _('Multi-Disciplinary Team')
|
|
|
|
def ready(self):
|
|
"""Import signals when app is ready."""
|
|
try:
|
|
import mdt.signals # noqa
|
|
except ImportError:
|
|
pass
|