How do you make ChoiceField\'s label behave like ModelChoiceField? Is there a way to set an empty_label, or at least show a blank fiel
ChoiceField
ModelChoiceField
empty_label
Had to use 0 instead of u'' because of integer field in model. (Error was invalid literal for int() with base 10: ')
if not required and empty_label is not None: choices = tuple([(0, empty_label)] + list(choices))