Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Offhand two options:
#models.py
#Django Models ChoiceField
class Profile(models.Model):
# Country Choices
CHOICES = (
('US', 'United States'),
('FR', 'France'),
('CN', 'China'),
('RU', 'Russia'),
('IT', 'Italy'),
)
username = models.CharField(max_length=300)
country = models.CharField(max_length=300, choices = CHOICES)
def __str__(self):
return self.username
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question