9 lines
248 B
Python
9 lines
248 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
class EmployeeConfig(AppConfig):
|
|
name = 'apps.employee'
|
|
label = 'employee'
|
|
verbose_name = _('Employee')
|
|
verbose_name_plural = _('Employees')
|