私は持っている:
...
post_str = "Please input the following information... \nDescription: \n Last Name:"
context = {
'post_str':post_str,
...
}
return render_to_response('contact/contact.html', context, context_instance=RequestContext(request))
そのように印刷されますが、
Please input the following information... Description: Last Name:
.
しかし、私はそれを印刷したい:
Please input the following information...
Description:
Last Name:
使い方は正しいと思いました。必要なものを正常に生成するために改行を取得するにはどうすればよいですか?
事前にご協力いただきありがとうございます。