When try to use function based views with 'django.shortcuts.render' which is return 'django.http.HttpResponse' directly,
django-distill's renderer is still try to call .render() method that not exists.
'django.template.TemplateResponse' has .render() but not in 'django.http.HttpResponse'.
So, I changed to call .render() only if type of response is 'django.template.TemplateResponse'.
When try to use function based views with 'django.shortcuts.render' which is return 'django.http.HttpResponse' directly, django-distill's renderer is still try to call .render() method that not exists.
'django.template.TemplateResponse' has .render() but not in 'django.http.HttpResponse'.
So, I changed to call .render() only if type of response is 'django.template.TemplateResponse'.