标签: django django-templates
在模板中,我使用的是include:
include
{% include "blah.html" with x="..." only %}
我可以在blah.html中使用x。
x
现在,我希望blah.html为x设置一个默认值,如果它不是由“父”模板传递的话:
{% include "blah.html" only %}
由于显然没有内置的模板标签可以在模板中设置变量,所以我不知道该如何实现...