我试图让表单上的占位符用 Flask-Babel 的_()
功能进行翻译。
{{ render_field(form.search, placeholder="{{ _('Buscar') }}" }}
我收到此错误:
File "/home/john/Scripts/Python/games/templates/index.html", line 45, in template
{{ render_field(form.search, placeholder="{{ _('Buscar') }}" }}
TemplateSyntaxError: unexpected '}', expected ')'
我该如何解决?