开发者

Django models.ForeignKey filter

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 fil开发者_StackOverflowter the drop down list of the foreign key?


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜