Атрибут context_object_name в ListView в Django
Чтобы в шаблоне было
employees, а не
object_list:
class EmployeeListView(ListView):
model = Employee
template_name = 'employees/list.html'
context_object_name = 'employees'
Задайте
context_object_name = 'employees'
и используйте его в шаблоне.