Created
October 28, 2010 10:30
-
-
Save davidbgk/651080 to your computer and use it in GitHub Desktop.
Easily add an empty choice to a Django ChoiceField
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django import forms | |
class EmptyChoiceField(forms.ChoiceField): | |
def __init__(self, choices=(), empty_label=None, required=True, widget=None, label=None, | |
initial=None, help_text=None, *args, **kwargs): | |
# prepend an empty label if it exists (and field is not required!) | |
if not required and empty_label is not None: | |
choices = tuple([(u'', empty_label)] + list(choices)) | |
super(EmptyChoiceField, self).__init__(choices=choices, required=required, widget=widget, label=label, | |
initial=initial, help_text=help_text, *args, **kwargs) |
Nice, thanks!
thanks for your nice idea after 10 years !
thanks for your nice idea after 12 years !
🙌
Still relavant
Thanks!!
Clever solution for cleaner code. Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!!