poli_planning/polyclinic_scheduling/apps/schedule/apps.py

9 lines
248 B
Python
Raw Normal View History

2020-05-13 15:54:40 +02:00
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class ScheduleConfig(AppConfig):
name = 'apps.schedule'
label = 'schedule'
verbose_name = _('Schedule')
verbose_name_plural = _('Schedules')