XH_Digital_Management/application/perf_mgnt/urls.py

7 lines
333 B
Python
Raw Normal View History

from django.urls import path
from .views import group_business_objectives, employee_performance_targets
urlpatterns = [
path('group_business_objectives/', group_business_objectives, name='group_business_objectives'),
path('employee_performance_targets/', employee_performance_targets, name='employee_performance_targets'),
]