categories = Category.objects.all()
t = loader.get_template('index.html')
v = Context({
'categories': categories
})
return HttpResponse(t.render(v))
{% for category in categories %}
<h1>{{ category.name }}</h1>
{% endfor %}
这很有效。现在我试图打印该类别中的每个公司。 company表有一个类别表的外键
我试过
{% for company in category.company_set.all() %}
似乎django不喜欢模板中的()
在django网站上有一个迷宫般的信息,我一直迷失在.96,1.0和开发版之间。我正在运行django版本1.0.2
答案 0 :(得分:49)