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

{% if current_client %} Просмотр клиента {% else %} Регистрация клиента {% endif %}

{% if errors %} {% endif %}

Все клиенты

{% for client in clients|sort(attribute="surname")|sort(attribute="name")|sort(attribute="middlename") %} {% endfor %}
Номер телефона Фамилия Имя Отчество Действия
{{ client.phone }} {{ client.surname }} {{ client.name }} {{ client.middlename }}
{% endblock %}