I'm using django-pjax, and I'm not sure how I should be redirecting from within a view that could also return a pjax response.
If I use the redirect shortcut, I get:
AttributeError: 'HttpResponseRedirect' object has no attribute 'template_name'
Probably because django-pjax requres a TemplateResponse object, not a HttpResponse object. But since TemplateResponse objects don't handle redirects, I'm not sure what to do.
Any guidance is appreciated!