[Answer]-Adding drop down list to django

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]]

Leave a comment