Skip to content

Instantly share code, notes, and snippets.

@kezabelle
Created November 8, 2013 11:30
Show Gist options
  • Save kezabelle/7369739 to your computer and use it in GitHub Desktop.
Save kezabelle/7369739 to your computer and use it in GitHub Desktop.
For omarek on IRC.
class MyForm(Form):
value = forms.ChoiceField(choices=())
def __init__(self, *args, **kwargs):
super(MyForm, self).__init__(*args, **kwargs)
self.fields['value'].choices = get_choices(please_select='Please select:')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment