選択リストで選択したオプションのstackoverflowの例をいくつか実行しようとしましたが、それでも機能しませんでした。
これは私のコードスニペットです
<select name="topic_id" style="width:90%">
{% for t in topics %}
<option value="{{t.id}}" {% if t.id == topic_id %} selected="selected" {% endif %}>{{t.title}}{{t.id}}</option>
{% endfor %}
</select>
私はviews.pyのparam['topic_id']からtopic_idを取得しました。
ありがとう!