{% extends 'base.html' %} {% block title %}Главная страница{% endblock %} {% block content %} <h1>Главная страница</h1> {% for item in items%} <div class="requests"> <h5 class="index-title">{{item.title}}</h5> <p>{{item.short_desc}}</p> <img src="{{item.image.url}}" width="350px" height="250px"> <a href="" class="btn btn-warning">Подробнее</a> </div> {% endfor %} {% endblock %}