開発中の Python Web サイトで Chameleon を使用しています。コードのスニペットを次に示します。
<option tal:repeat="option options"
value="${option.isoformat()}"
selected="${if request.get_param('%s%d%s' %(day, row, type))==option.isoformat(): 'selected'}">
${int(option.strftime('%I'))}${option.strftime(':%M%p')}
</option>
しかし、何らかの理由で、常に構文エラーが発生します。
ExpressionError: invalid syntax
- String: "if request.get_param('%s%d%s' %(day, row, type))==option.isoformat(): 'selected'"
- Filename: /Users/theron/Sites/python/restaurateur/views/settings/hours.pt
何が間違っているのかわかりません。何か助けはありますか?