変数を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>
...