最佳答案
假设我有这个:
{% if files %}
Update
{% else %}
Continue
{% endif %}
在PHP中,我可以写一个条件简写,比如:
<?php echo $foo ? 'yes' : 'no'; ?>
是否有一种方法,我可以翻译这个工作在一个jinja2模板:
'yes' if foo else 'no'