在自定义模板标记中访问forloop.counter

时间:2014-11-24 21:08:31

标签: django django-templates

我编写了一个自定义模板标记get_item,它接受一个索引并返回该索引的会话持有列表中的项目。我的问题是我似乎无法在另一个模板命令标签中访问forloop.counter。

{% for item in form %}
    {% get_item {{ forloop.counter }} %}  --> How do I get this working?
    {{ item }}
{% endfor %}

我怎样才能克服这个?

谢谢!

1 个答案:

答案 0 :(得分:2)

应为{% get_item forloop.counter %}