Currently I am trying to create multiple view for one request. For 1 view, I am doing this:
return render_to_response(
"/index/index.html",
{}
)
And now when I try to add a "left" column to index.html, I need to put it on different view (because I need to apply the same technique on other place as well), this is how I do it:
leftCol = direct_to_template(request,settings.viewPath + "/columns/left.html",{})
return render_to_response(
"/index/index.html",
{
'leftColumn': leftCol,
}
The code works well, but the output is not what I expected. The leftCol shows the response header at the beginning of it's output:
"Content-Type: text/html; charset=utf-8"
How do I remove this header? I've been trying to modify the content_type and mimetype in the parameter but it didn't work.