例として、Postというモデルがあります(ユーザの認証モデルに外部キーとしてAuthorを使用しています)。それぞれのユーザーのリストと投稿の数を返す方法は?リスト内の全員にとって最新の投稿である可能性があります。Django:ユーザのリスト内のユーザ1人あたりのカウント数
def users_list(request):
users = UserProfile.objects.all()
for userposts in users:
posts_count = Post.objects.filter(author=users.user).count()
return render_to_response('users.html',{'users':users,'posts_count':posts_count})
[aggregation](https://docs.djangoproject.com/en/dev/topics/db/aggregation/#generating-aggregates-for-each-item-in-a-queryset)を参照してください。 –