次の辞書をレンダリング関数に渡しました。ソースは文字列のリストで、タイトルはソース内の文字列の 1 つと潜在的に等しい文字列です。
{'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 }} %}
赤で強調表示されます。