私はviews.pyにそのようなコードを持っています
template = loader.get_template('mysite/index.html')
context = Context({'try':'<h1>Header no 1</h1>'})
return HttpResponse(template.render(context))
index.html に書いた
<html>
<body>
{{ try }}
</body>
</html>
代わりに、ヘッダーは行タグとすべてのものを受け取りました。どうすれば修正できますか?