1👍
Use django forms
They are great for reusing forms, validation, and make processing forms much more pythonic.
You can create a ChoiceField
in your form, and then give a tuple showing [[value, label], [value, label], [value, label]]
Source:stackexchange.com