from django.urls import path from .views import * urlpatterns = [ path('emp_list/', emp_list_view, name='emp_list'), path('emp_list/add/', emp_list_add, name='emp_list_add'), path('emp_list/modify/', emp_list_modify, name='emp_list_modify'), path('emp_list/delete/', emp_list_delete, name='emp_list_delete'), path('get_salary_change_records//', get_salary_change_records, name='get_salary_change_records'), path('get_other_leave_details//', get_other_leave_details,name='get_other_leave_details'), path('add_other_leave_detail/', add_other_leave_detail, name='add_other_leave_detail'), path('edit_other_leave_detail//', edit_other_leave_detail, name='edit_other_leave_detail'), path('delete_other_leave_detail//', delete_other_leave_detail, name='delete_other_leave_detail'), path('attd_rec_list', attd_rec_list_view, name='attd_rec_list'), path('attd_list/add', attd_rec_list_add, name='attd_rec_list_add'), path('attd_list/modify', attd_rec_list_modify, name='attd_rec_list_modify'), path('attd_list/delete', attd_rec_list_delete, name='attd_rec_list_delete'), path('alv_list/', alv_list_view, name='alv_list'), path('alv_list/add/', alv_list_add, name='alv_list_add'), path('alv_list/modify/', alv_list_modify, name='alv_list_modify'), path('alv_list/delete/', alv_list_delete, name='alv_list_delete'), path('rk_list/', rk_list_view, name='rk_list'), path('rk_list/add/', rk_list_add, name='rk_list_add'), path('rk_list/modify/', rk_list_modify, name='rk_list_modify'), path('rk_list/delete/', rk_list_delete, name='rk_list_delete'), path('pst_list/', pst_list_view, name='pst_list'), path('pst_list/add/', pst_list_add, name='pst_list_add'), path('pst_list/modify/', pst_list_modify, name='pst_list_modify'), path('pst_list/delete/', pst_list_delete, name='pst_list_delete'), path('emp_list_for_create_account_profile/', emp_list_for_create_account_profile, name='emp_list_for_create_account_profile'), path('performance_list/',performance_list_view, name='performance_list'), path('performance_add/', performance_add, name='performance_add'), path('performance_modify/', performance_modify, name='performance_modify'), path('performance_delete/', performance_delete, name='performance_delete'), ]