21

我有一个上下文处理器,它将对象(即site)添加到模板上下文中,但该值未呈现在{% blocktrans %}模板标记内。在模板标签之外,值打印得很好。

<h1>{% trans "About" %} {{ site.domain }}</h1> <!-- works -->

{% blocktrans %}
   {{ site.domain }} <!-- doesn't work -->
{% endblocktrans %}

如何让对象的属性/变量在内部呈现{% blocktrans %}

4

1 回答 1

37

插值变量不能是点表达式 - 你需要这样的东西:

{% blocktrans with site_domain=site.domain %}{{ site_domain }} is a ...{% endblocktrans %}

也可以看看:

于 2012-01-25T18:09:36.540 回答