私はリストを持っています..
availablethemes = ['cerulean', 'default', 'journal', 'united']
そして、各アイテムをドロップダウンアイテムリストに入れようとしています
<select id="theme" name="theme">
#for $interface in $availablethemes
#if $getVar('theme', 'default') == $interface
<option selected="selected" value="$interface">$interface</option>
#else
<option value="$interface">$interface</option>
#end if
#end for
</select>
これはチーター テンプレート ファイルの一部であり、構成ファイルのリストが追加されます。私が抱えている問題は、リストではないかのように各文字を個別に配置することが示されていることです。リスト項目ではなく、各文字を反復処理します。誰が私が間違っているのか分かりますか?
ありがとう