我有两个型号
使用django-filter显示数据。 不幸的是,当你在select-field中创建一个表单模型Asset的所有值时,我只会那些与FK模型Notification相关的值。
def get_queryset(self):
try:
self.filter = NotificationListFilter(
self.request.GET,
queryset = Notification.objects.all()
)
return self.filter
except :
return Notification.objects.order_by('-asset__system')
在某种程度上,我可以构建查询集吗?