我知道如果我有一个模型,我可以创建一个视图,使用这样的视图渲染模型的单个实例:
def detail(request, id=None):
instance = get_object_or_404(Procedimiento,id=id)
context = {
'title':instance.name,
'instance':instance,
}
return render(request,'detail.html',context)
但我无法找到如何创建一个视图来呈现具有多个模型的应用程序的单个实例。
任何帮助都很有用。