View.py
def export(request):
    if request.is_ajax():
        ourid = request.GET.getlist("terid")
        Case_Detail = Case_Info_Resource()
        for i in ourid:
            print(i)
            queryset = Case_Info.objects.filter(id=i)
            dataset = Case_Detail.export(queryset)
        response = HttpResponse(
            dataset.xls, content_type='application/vnd.ms-excel')
        response['Content-Disposition'] = 'attachment; filename="persons.xls"'
        print("breakpoint")
        return response
Ajax Script
<script>
                    $(document).ready(function () {
                        $('#Download').click(function () {
                            var list = [];
                            $("input:checkbox[name='checkbox']:checked").each(function () {
                                list.push($(this).val());
                            });
                            $.ajax({
                                url: '/Account_Manager/Download/',
                                type: 'GET',
                                data: { 'terid': list },
                                traditional: true,
                                dataType: 'html',
                                success: function () {
                                    alert("The best cricketers are: " + list.join(", "));
                                }
                            });
                        });
                    });
                </script>
Error: The view Apps.views.export didn't return an HttpResponse object. It returned None instead.
So, Ajax wants us to return the value in HttpResponse but I need to pass the response normally in order to download the excel which I am creating. I think I checked all the possible answers and struggling with it from the last 3 days. Thank you in advance for any help, suggestions, or edit.