レンダリングするテンプレートがありますが、いくつかのタグも含まれているため、特定の文字列にアクセスするのが難しくなっています。コードは次のようになります。
template="""
<select>
<option {% if record.views = '%s' %} selected {% endif %}>'%s'
</select>
"""%(pop, pop)
ここで pop の値が必要ですが、次のエラーが発生します。
Caught TypeError while rendering: not enough arguments for format string
これらの文字列形式にどのようにアクセスできますか。ありがとう