I have a 2 models:
class Foo(models.Model):
name...
type = models.CharField(choices=TYPE_CHOICES)
class Fighter(models.Model):
foo = models.ForeignKey(Foo, filter(type="A")
Can you filter the drop down list of the foreign key?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Take a look at https://docs.djangoproject.com/en/1.3/ref/models/fields/, specifically, the ForeignKey.limit_choices_to section.
Hope that helps you out.