My django web app makes and save docx and I need to make it downloadable. I use simple render_to_response as below.
render_to_response
return render_to_response(\"
Try with this response:
response = HttpResponse(mydata, mimetype='application/vnd.ms-word') response['Content-Disposition'] = 'attachment; filename=example.doc' return response