{% extends "base.html" %} {% load static %} {% block content %} <div class="container"> <ul> {% for it in object_list %} <li> <h3>Имя:{{it.name}}</h3> <p>Тип:{{it.title}}</p> <p>Описание:{{it.desc}}</p> <img src="{{it.image.url}}" width="450px" height="450px"> </li> {% endfor %} </ul> </div> {% endblock %}