{% extends "page.html" %} {% block page_content %}

Сотрудники

{% for u in users %}{% endfor %}
ЛогинФИОРольТелефонEmailMAX IDСтатусСоздан
{{ u.login }}{{ u.full_name }} {{ {'owner':'Владелец','engineer':'Инженер','technician':'Техник'}[u.role] }} {{ u.phone }}{{ u.email }} {{ u.max_user_id or '—' }} {{ 'Активен' if u.is_active else 'Неактивен' }} {{ u.created_at.strftime('%d.%m.%Y') if u.created_at else '' }} {% if u.role != 'owner' %}
{% endif %}
{% endblock %}