{% extends 'base.html' %} {% block content %}

Профиль пользователя {{ user.username }}

{% if user.photo_profile %} ... {% endif %}

{{ user.first_name }}

{{ user.last_name }}

{{ user.email }}

Мои заказы

{% for i in products %} {% if i.product.photo_product %} ... {% endif %} {% endfor %}
{% endblock %}