我知道您可以直接在include语句中使用变量:
{% include template-name %}
但我有一个变量只包含要包含的文件名的一部分。所以我想说点像
{% include {{name}}.hmtl %}
我怎样才能达到这个效果?
答案 0 :(得分:3)
您可以使用add
template filter:
{% with name|add:".html" as template %}
{% include template %}
{% endwith %}