私のHTMLコードは以下の通りです:
<select name="txn" tabindex="3" id="txn" class="fixed" onfocus="highlightInput(this.id)" onblur="unhighlightInput(this.id)">
<option value="RR" my="{{txn|genselected:"RR"|safe}>RR</option>
<option value="CR" my="{{txn|genselected:"CR"|safe}}">CR</option>
<option value="SR" my="{{txn|genselected:"SR"|safe}}">SR</option>
<option value="OR" my="{{txn|genselected:"OR"|safe}}">OR</option>
</select>
txn は、forms.py で次のように定義されています。
txn = forms.ChoiceField(label="txn", 選択肢 = it_const.TXN),
私の質問: データベースでオプションの値が動的に増加していますか? データベースからオプション値を読み取り、html のドロップダウン メニューに配置したい。HTML コードと、txn フォーム フィールドからオプションを読み取ってメニュー オプションに表示する方法を教えてください。
前もって感謝します。