In
Django models/forms the choices for a combobox often look like this:
food_choices = (("",""), ("1", "Falafel"), ("2", "Hummus"), ("3", "Eggplant Stuff, Babaganoush???"),
So the value to be stored in the database will be 1/2/3, but the displayed value on the form will be
…