Files
ihrm/horilla_widgets/views.py

15 lines
418 B
Python
Raw Normal View History

2023-09-20 12:32:44 +05:30
from django.shortcuts import render
# Create your views here.
# urls.py
# path("employee-widget-filter",views.widget_filter,name="employee-widget-filter")
# views.py
# @login_required
# def widget_filter(request):
# """
# This method is used to return all the ids of the employees
# """
# ids = EmployeeFilter(request.GET).qs.values_list("id", flat=True)
# return JsonResponse({'ids':list(ids)})