实际上伙计们,我不知道那是否正确,但是有人告诉我django是无限的,所以......
在views.py中
class SelfieList(ListView):
template_name = "SelfieList.html"
model = Selfie, Outfit
这可能是可行的吗?
答案 0 :(得分:0)
这是不可能的。 Listview只接受一个模型,并在model.objects.all()
方法中执行self.get_queryset()
。您可以做的一件事是继承View
然后继承pass querysets of multiple models as context data