services.html 465 B

123456789101112131415
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <h1>Товары</h1>
  4. {% if user.is_staff %}
  5. {% endif %}
  6. {% for service in service_list%}
  7. <div>
  8. <h5 class="index-title">{{service.name}}</h5>
  9. <p>{{service.desc}}</p>
  10. <img src="{{service.image.url}}" width="350px" height="250px">
  11. <a href="" class="btn btn-warning">Узнать подробнее</a>
  12. </div>
  13. {% endfor %}
  14. {% endblock %}