13

{% block ... %}jinja2 フィルターをコンストラクトに適用することは可能ですか? 私がやりたかったことは、次のようなものでした:

{% block content|upper %}
here is some content that will be rendered in upper case
{% endblock %}

...しかし、これは機能しません。上記の例はエラーになります。テンプレート テキストのチャンクを jinja2 フィルターでラップする他の方法はありますか?

4

1 に答える 1

12

フィルターセクションを使用できます。

{% block content %}
    {% filter upper %}
        Here is some content that will be rendered in upper case.
    {% endfilter %}
{% endblock %}
于 2012-10-26T20:59:26.807 に答える