开发者

Django models.ForeignKey filter

开发者 https://www.devze.com 2023-04-04 08:17 出处:网络
I have a 2 models: class Foo(models.Model): name... type = models.CharField(choices=TYPE_CHOICES) class Fighter(models.Model):

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

精彩评论

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