{% extends "base.html" %} {% block title %}Multiplicadores e Usuários — {{ app_name }}{% endblock %} {% block content %}

🧑‍💼 Multiplicadores e Usuários

Gestão de contas, hierarquia e permissões da equipe

{% if current_user.can_create_cadastrador() %} + Criar Novo Usuário {% endif %}
{% for u in usuarios %} {% else %} {% endfor %}
Nome / CPF E-mail / Gmail Perfil Superior Hierárquico Cadastrados Diretos Status Ações
{{ u.nome }} {% if u.cpf %}
CPF: {{ u.cpf }} {% endif %}
{{ u.email or 'N/A (CPF)' }} {% if u.perfil == 'cadastrador' %}MULTIPLICADOR{% else %}{{ u.perfil|upper }}{% endif %} {% if u.cadastrador_pai %} {{ u.cadastrador_pai.nome }} {% else %} Raiz / Sem Superior {% endif %} {{ u.cadastros|length }} {% if u.solicitou_reset %} ⚠️ Reset Solicitado {% elif u.ativo %} Ativo {% else %} Inativo {% endif %} {% if current_user.can_create_cadastrador() %}
{% endif %} {% if current_user.can_manage_users() or (current_user.perfil == 'cadastrador' and u.cadastrador_pai_id == current_user.id) %} Editar {% endif %} {% if u.perfil == 'cadastrador' %} Ver Rede {% endif %} {% if current_user.can_manage_users() %}
{% endif %}
Nenhum usuário cadastrado.
{% endblock %}