をソートし、「中国は」は常にドロップダウンリストの一番上にある必要があります...ここで私は名前で「国のリストをソートしたいリスト#sort
が私のコード..です
<option value="">Country...</option>
<t t-foreach="all_country.sorted(key=lambda x:x.name, reverse=False)" t-as="x">
<option t-att-value="x.id" t-att-selected="int(x.id) == int(((country_id or -1) if country_id else -1))">
<t t-esc="x.name"/>
</option>