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

Usuários

Novo Usuário
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% if usuarios %} {% for usuario in usuarios %} {% endfor %} {% else %} {% endif %}
Nome Email 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 %}
{% if usuario.id != current_user.id %} {% endif %}
Nenhum usuário cadastrado.
{% endblock %} {% block scripts %} {% endblock %}