{% extends "base.html" %} {% block title %}Клиенты{% endblock %} {% block content %}
{% if query %} Очистить {% endif %}
{% if page_obj %}
{% for customer in page_obj %} {% endfor %}
Имя Email Телефон Сумма покупок Действия
{{ customer.full_name }} {{ customer.email|default:'—' }} {{ customer.phone|default:'—' }} {{ customer.total_spent|default:0|floatformat:2 }} руб. 👁
{% if page_obj.has_other_pages %} {% endif %} {% else %}

Клиенты не найдены.

{% endif %}
{% endblock %}