我在文件中有一个国家/地区列表,如下所示,
COUNTRIES = (
('AF', 'Afghanistan'),
('AX', '\xc5land Islands'),
('AL', 'Albania'),...
我想在我的下拉列表中只显示国家的全名,并且只在模型中保存全名。
现在我的models.py是
class UserProfiles(models.Model):
location = models.CharField(max_length=60, blank=True, null=True)
和 forms.py 是
class UserProfileForm(ModelForm):
location = forms.ChoiceField(choices=COUNTRIES)