I am making a test form using ModelForm which has two models.
CountryEmail
I am creating a form based on Email models.
The Country model has name field, with the values given by the COUNTRIES list.
I want to display name field in the EmailForm, with all the COUNTRIES values. Do I have to use a foreign key? Please guide.
My models look like this:
COUNTRIES = (('IND', 'India'), ('PAK', 'Pakistan'), ('AMR', 'America'))
class Country(models.Model):
name = models.CharField(max_length=3, choices=COUNTRIES)
class Email(models.Model):
title = models.CharField(max_length=50)
country = models.ForeignKey('Country')
sender = models.EmailField(max_length=20)
date = models.DateTimeField()
text = models.CharField(max_length=20)
class EmailForm(ModelForm):
class Meta:
model = Email
If I generate a form out of this. it shows a drop down menu which is blank. How to get values from the list?