ProductOne.html 307 B

123456789101112
  1. {% extends "base.html" %}
  2. {% load static %}
  3. {% block content %}
  4. <div class="container">
  5. {% for i in productone %}
  6. <h3>Имя:{{i.name}}</h3>
  7. <p>Тип:{{i.title}}</p>
  8. <p>Описание:{{i.desc}}</p>
  9. <img src="{{i.image.url}}" width="450px" height="450px">
  10. {%endfor%}
  11. </div>
  12. {% endblock %}