profile.html 1.1 KB

12345678910111213141516171819202122232425262728
  1. {% extends 'base.html'%}
  2. {% block content%}
  3. <h2>Личный кабинет</h2>
  4. <div>Пользователь: {{user.username}}</div><br>
  5. Фамилия: {{user.lastname}}<br>
  6. Email: {{user.email}}<br>
  7. {% if user.foto %}
  8. <img src="{{user.foto.url}}" width="200px" height="200px"><br><br>
  9. {% endif %}
  10. <h3>Заказанные товары</h3>
  11. <div class="container">
  12. <div class="row">
  13. {% for pro in user.basket_set.all %}
  14. <div class="card d-flex justify-content-center " style="width: 20rem;">
  15. <h5 class="card-title d-flex justify-content-center">{{pro.product.name}}</h5>
  16. {% if pro.product.image %}
  17. <img class="d-flex justify-content-center mx-auto " src="{{pro.product.image.url}}" width="280px" height="400px" ><br>
  18. {% endif %}
  19. <div class="card-body">
  20. <p class="card-text">{{pro.product.description}}</p>
  21. <a href="{% url 'prod_uct' pro.id %}" class="btn btn-primary"> О товаре</a>
  22. </div>
  23. </div>
  24. {% endfor %}
  25. </div>
  26. </div>
  27. {% endblock%}