我将以下字典传递给渲染函数,源是字符串列表,标题是可能等于源中的字符串之一的字符串:
{'title':title, 'sources':sources})
在 HTML 模板中,我想在以下几行中完成一些事情:
{% for source in sources %}
<tr>
<td>{{ source }}</td>
<td>
{% if title == {{ source }} %}
Just now!
{% endif %}
</td>
</tr>
{% endfor %}
但是,以下文本块会导致错误:
TemplateSyntaxError at /admin/start/
Could not parse the remainder: '{{' from '{{'
...以{% if title == {{ source }} %}
红色突出显示。