как это сделать?
office = forms.ChoiceField( label=_('Office'), required=False, widget=forms.Select() ) def __init__(self, *args, **kwargs): super(YOURFORMCLASS, self).__init__(*args, ** kwargs) offices = [ ('', _('select office')), ('office 1', 'office 1'), ('office 2', 'office 2'), ] self.fields['office'].choices = offices
Обсуждают сегодня