{% extends "base.html" %} {% block title %}Gestión de Usuarios - IP Manager{% endblock %} {% block header_title %}Gestión de Usuarios{% endblock %} {% block content %}
Lista de Usuarios {{ users.total }}
{% if users.items %}
{% for user in users.items %} {% endfor %}
Usuario Información Estado Último Acceso Acciones
{{ user.full_name[0] }}
{{ user.full_name }}
@{{ user.username }}
{{ user.email }} {% if user.department %} {{ user.department }} {% endif %}
{{ 'Activo' if user.is_active else 'Inactivo' }} {% if user.is_admin %} Admin {% endif %}
{% if user.last_login %} {{ user.last_login.strftime('%d/%m/%Y %H:%M') }} {% else %} Nunca {% endif %}
{% for user in users.items %}
{{ user.full_name[0] }}
{{ user.full_name }}
@{{ user.username }}
{{ user.email }} {% if user.department %} {{ user.department }} {% endif %} Registrado: {{ user.created_at.strftime('%d/%m/%Y') }}
{{ 'Activo' if user.is_active else 'Inactivo' }} {% if user.is_admin %} Admin {% endif %}
{% if user.last_login %} Último: {{ user.last_login.strftime('%d/%m') }} {% else %} Sin accesos {% endif %}
{% endfor %}
{% if users.pages > 1 %}
{% endif %} {% else %}
No se encontraron usuarios

{% if search_query %} No hay usuarios que coincidan con tu búsqueda "{{ search_query }}". {% else %} Aún no hay usuarios registrados en el sistema. {% endif %}

Crear Primer Usuario
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %} {% block extra_css %} {% endblock %}