index.html 378 B

123456789101112
  1. {% extends "base.html" %}
  2. {% load static %}
  3. {% block content %}
  4. <div class="container">
  5. {% for i in product %}
  6. <h3>Имя:{{i.name}}</h3>
  7. <p>Тип:{{i.title}}</p>
  8. <img src="{{i.image.url}}" width="450px" height="450px"><br><br>
  9. <a class="btn btn-primary" href="{% url 'product-one' i.id %}">Узнать больше</a><br><br>
  10. {%endfor%}
  11. </div>
  12. {% endblock %}