9 lines
248 B
Python
9 lines
248 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
class HospitalConfig(AppConfig):
|
|
name = 'apps.hospital'
|
|
label = 'hospital'
|
|
verbose_name = _('Hospital')
|
|
verbose_name_plural = _('Hospitals')
|