我试图在Django中简单地显示我的数据库中的数据。我收到以下错误; Syntax Error
我在views.py中的代码如下;
def InputDisplay(request):
input_info = Input.objects.all()
args = {"input_detail" : input_info}
print args
return render_to_response('Project/display.html', args,
context_instance=RequestContext(request))
我在display.html中的if语句;
{% block head %}
<title> Display Measurements</title>
{% endblock %}
{% block body %}
<div class="container">
<h1> Input Details </h1>
{% for detail in input_detail %}
{{ detail.id }}
{{ detail.waist }}
{{ detail.height }}
{% endfor %}
</div>
{% endblock %}
非常感谢任何帮助。
答案 0 :(得分:0)
更改
print args # python 2
到
print(args) # python 3
python中的 3 print
语句必须在()