如何在 django 模板中使用变量作为索引?
现在我得到这个错误:
Exception Type:
TemplateSyntaxError
Exception Value:
Could not parse the remainder: '[year]' from 'bikesProfit.[year]'
我也尝试过{{ bikesProfit.year }}
,但这给出了一个空的结果。
{% for year in years_list %}
<tr>
<th>Total profit {{ year }}:</th>
</tr>
<tr>
<th></th>
<th> {{ bikesProfit[year] }} </th>
...