Django - 模板链标签

时间:2012-05-14 09:35:27

标签: django django-templates

我想在firstof中使用with

<div>
  {% with variable = firstof variable1 variable2 %}</div>
  {{ variable }}
  {% endwith %}
</div>

但我当然得到了

  

你'收到一个无效的令牌:u'variable1'

还有另一种方法可以将这两个标签一起使用吗?

1 个答案:

答案 0 :(得分:1)

您不能将firstof分配给这样的变量,遗憾的是(请参阅this thread on django-users)。你需要写your own custom template tag