1 回答
TA贡献1998条经验 获得超6个赞
您在 for 循环中引用了错误的变量。您必须使用该单词后声明的变量名for来引用循环内的实例。
<ul>
{% for t in top_sellers_list %}
<li><a href="/dashboard/topsellers/{{ t.id }}/">{{t.avg_per_week }}</a></li>
{% endfor %}
</ul>
<ul>
{% for c in classification %}
<li><a href="/dashboard/classifications/{{ c.id }}/"> {{c.inventory_dollars }}</a></li>
{% endfor %}
</ul>
<ul>
{% for a in anormal %}
<li><a href="/dashboard/anormals/{{ a.id }}/">{{ a.reference_anormales }}</a></li>
{% endfor %}
</ul>
<ul>
{% for n in negat %}
<li><a href="/dashboard/negats/{{ n.id }}/">{{ n.reference_negatives }}</a></li>
{% endfor %}
</ul>
<ul>
{% for s in service %}
<li><a href="/dashboard/services/{{ s.id }}/">{{ s.reference_service }}></a></li>
{% endfor %}
</ul>
请注意,我也更改了链接,仅作为示例
- 1 回答
- 0 关注
- 95 浏览
添加回答
举报