11 lines
243 B
Python
11 lines
243 B
Python
"""
|
|
accessibility/accessibility.py
|
|
"""
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
ACCESSBILITY_FEATURE = [
|
|
("employee_view", _("Default Employee View")),
|
|
("employee_detailed_view", _("Default Employee Detailed View")),
|
|
]
|