📅  最后修改于: 2022-03-11 14:47:01.642000             🧑  作者: Mango
#views.py
from django.db.models import Count
# You should change post in Count function based on your model.
categories = Category.objects.all().annotate(posts_count=Count('post'))
#Then you will have access to number of posts for each category:
for category in categories:
print(category.posts_count)
#in your template
{% for category in categories %}
Number of posts: {{category.posts_count}}
{% endfor %}