0
フォームに選択フィールドがあります。同じ色のドロップダウンリストにすべての車を表示しようとしています。選択した色はユーザー入力フィールドで定義されていますforms.pyにパラメータを渡す方法
class car(forms.Form,email):
cars = forms.ModelChoiceField(
empty_label = "Current Cars",
queryset = Cars.objects.order_by('name').filter(color=color),
widget = Select(attrs={'class': 'span6 small-margin-top small-margin-bottom'}),
required=True
)
[ジャンゴModelChoiceField:クエリセットをフィルタリングし、オブジェクトとしてデフォルト値を設定する]の可能な重複(http://stackoverflow.com/questions/5329586/django-modelchoicefield-filtering-query -set-and-setting-default-as-an-obj) – Max