我的看法:
post_details = Post.objects.all()
for each in post_details:
post_like_list=PostLikes.objects.filter(post = each)
pl=len(post_like_list)
dict1={"post":each}
dict2={"how many likes":pl}
list.append([dict1,dict2])
print list
我的列表 =[[{'post': 住宿}, {'多少赞': 0}], [{'post': 选举}, {'多少赞': 0}], [{'post': }, {'多少赞': 3}], [{'post': }, {'多少赞': 1}]]
通过使用 django 模板,我如何从列表中的字典中获取“帖子”和“多少喜欢”?