Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は動作する次のコードを持っています、
for x in SomeModel.objects.filter(type__label='ABC'):
現在、「ABC」はラベルの 1 つです。フィルタリングできる他のラベルを見つけるにはどうすればよいですか?
あなたが何を求めているのか完全にはわかりません。の可能な値は、(おそらく)モデルtype__labelのフィールドの値です。それらのリストを取得できます:labelType
type__label
label
Type
Type.objects.values_list('label', flat=True)
または、David がコメントで提案しているように、管理インターフェイスを見てください。