{% extends 'base.html' %} {% block content %}
Nome | Perfil | Empresa | Status | Ações | |
---|---|---|---|---|---|
{{ usuario.nome }} | {{ usuario.email }} | {% if usuario.tipo_perfil == 'administrador' %} Administrador {% elif usuario.tipo_perfil == 'consultor' %} Consultor {% elif usuario.tipo_perfil == 'cliente' %} Cliente {% endif %} | {{ usuario.empresa.nome_fantasia if usuario.empresa else '-' }} | {% if usuario.ativo %}Ativo{% else %}Inativo{% endif %} | |
Nenhum usuário cadastrado. |