12345678910111213141516171819202122232425262728 |
- {% extends 'base.html'%}
- {% block content%}
- <h2>Личный кабинет</h2>
- <div>Пользователь: {{user.username}}</div><br>
- Фамилия: {{user.lastname}}<br>
- Email: {{user.email}}<br>
- {% if user.foto %}
- <img src="{{user.foto.url}}" width="200px" height="200px"><br><br>
- {% endif %}
- <h3>Заказанные товары</h3>
- <div class="container">
- <div class="row">
- {% for pro in user.basket_set.all %}
- <div class="card d-flex justify-content-center " style="width: 20rem;">
- <h5 class="card-title d-flex justify-content-center">{{pro.product.name}}</h5>
- {% if pro.product.image %}
- <img class="d-flex justify-content-center mx-auto " src="{{pro.product.image.url}}" width="280px" height="400px" ><br>
- {% endif %}
- <div class="card-body">
- <p class="card-text">{{pro.product.description}}</p>
- <a href="{% url 'prod_uct' pro.id %}" class="btn btn-primary"> О товаре</a>
- </div>
- </div>
- {% endfor %}
- </div>
- </div>
- {% endblock%}
|