我想在 Django 视图中创建多个上下文对象

I want to create multiple context object in django views

def claim(request):
    entries = Child_Info.objects.all()
    ctx = { 'entries' : entries }
    return render_to_response('myapp/claim.html', ctx)

如何在这里传递多个上下文?

为什么您需要多个上下文? ctx 是一个字典,你可以在其中添加任意数量的条目。