django 폼 드롭다운 상자 구현

1551 단어 django
방법1:  queue  =   forms.ModelChoiceField(label = u ' ' ,queryset = Queue.objects. all ())   class   ServerForm(forms.Form):
     queue  =   forms.ChoiceField(label = u ' ' )
    def   __init__( self , * args, * * kwargs):
       super (ServerForm, self ).__init__( * args, * * kwargs)
       self .fields[ 'queue' ].choices = ((x.que,x.disr)  for   in   Queue.objects. all ())
: Queue __unicode__()

좋은 웹페이지 즐겨찾기