{% extends 'blog/base.html' %} {% block title %} Categories {% endblock %} {% block body %} Все категории {% for category in object_list %} {{ category.name }} {% for post in category.cat_posts.all %} {{ post.title }} {% endfor %} {% endfor %} {% endblock %}