模板不是渲染..
我试图通过django将我的内容显示到模板页面。
如何将视图中的内容显示到模板。
这是模板代码:
<html>
<body>
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="/projectapp/{{question.id}}/">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% elae %}
<p>No polls are available.</p>
{% endif %}
</body>
</html>
这里是view.py页面代码:
def index(request)
latest_question_list = Question.object.order_by('-pub_date')[:5]
template = loader.get_template('projectapp/index.html')
context = {
'latest_question_list':latest_question_list,
}
return HttpResponse(template.render(context, request))