1👍
✅
This should be done in the view where you initialize your form using the initial
attribute.
So something like:
countries = forms.ChoiceField(
choices=YourCountriesGoesHere,
initial='--- Select a country ---')
You can read the documentation here
Source:stackexchange.com