繁体   English   中英

过滤inlineformset_factory的字段

[英]filtering fields of an inlineformset_factory

我有这些模型:

class TourItem(models.Model):
   Tour=models.ForeignKey(Tour)
   TourItemType=models.ForeignKey(TourItemType)
   Transfer=models.ForeignKey(Transfer)
   Accommodate=models.ForeignKey(Accommodate)
   Visit=models.ForeignKey(Visit)

和:

class Tour(models.Model):
   Lang_Choices=(
      ('fa',ugettext_lazy('Persian')),
      ('en',ugettext_lazy('English')),
      ('fr',ugettext_lazy('French')),
   )
   Lang=models.CharField(max_length=1,choices=Lang_Choices,editable=False)
   Name=models.CharField(max_length=100)
   Description=models.TextField()
   ActionDate=models.DateTimeField(auto_now=True,editable=False)

这个内联形式:

TourItemFormSet=inlineformset_factory(Tour,TourItem,can_delete=True,extra=4)

容纳,TourItemType,转移和访问模型有一个名为Lang的字段,当我制作formset时,我在每种形式中为这些模型设置了4个组合框,现在我想用request.LANGUAGE_CODE过滤这些组合框。我搜索了很多并最终得到了这个代码:

def get_field_qs(field, **kwargs):
      if field.name == 'TourItemType':
     field.queryset = TourItemType.objects.filter(Lang__iexact=request.LANGUAGE_CODE)
      return field
   TourItemFormSet=inlineformset_factory(Tour,TourItem,formfield_callback=get_field_qs,can_delete=True,extra=4)

但现在它显示没有字段,我该如何处理?

提前致谢

在您的视图中尝试此操作:

TourItemFormSet = inlineformset_factory(Tour,TourItem,can_delete=True,extra=4)
TourItemFormSet.form.base_fields["TourItemType"].queryset = TourItemType.objects.filter(Lang__iexact=request.LANGUAGE_CODE)
# then create an instance of TourItemFormSet and add to template context

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM