state_template = """
<select id="state_value">
<option{% if record.action_state = 'Planned' %} selected {% endif %}>Planned
<option{% if record.action_state = 'In_Progress' %} selected {% endif %}>In Progress
<option{% if record.action_state = 'Abandoned' %} selected {% endif %}>Abandoned
<option{% if record.action_state = 'Completed' %} selected {% endif %}>Completed
</select>
"""
class PlannedActionTable(tables.Table):
action_state = tables.TemplateColumn(state_template, verbose_name="State")
ドロップダウンリストで選択または変更すると、データベースを変更できる必要があります。これを行う方法はありますか?フォーム クラスを作成しようとしましたが、TemplateColumn に追加する方法がわかりません。