{% extends "base.html" %} {% block title %}Dashboard - {{ config.APP_NAME }}{% endblock %} {% block content %}

Dashboard

Bienvenido, {{ current_user.username }}. Aquí tienes un resumen de tu gestor de contraseñas.

{% if current_user.can_edit() %} {% endif %}
Total Contraseñas
{{ total_passwords }}
Caducadas
{{ expired_passwords }}
Tu Rol
{{ current_user.role.title() }}
Departamento
{{ current_user.department.name if current_user.department else 'Sin asignar' }}
{% if current_user.department %} Ver del depto {% else %} N/A {% endif %}

Contraseñas Recientes

Últimas contraseñas agregadas o modificadas

{% if recent_passwords %}
{% for password in recent_passwords %}

{{ password.name }}

{% if password.is_expired %} Caducada {% endif %}
{% if password.username %}

{{ password.username }}

{% endif %}

{{ password.department.name }}

{{ password.updated_at.strftime('%d/%m/%Y') }}

{% if current_user.can_edit() and (current_user.can_admin() or password.department_id == current_user.department_id) %} {% endif %}
{% endfor %}
{% else %}

No hay contraseñas aún

Comienza agregando tu primera contraseña al sistema

{% if current_user.can_edit() %} Agregar Primera Contraseña {% endif %}
{% endif %}

Acciones Rápidas

Herramientas y funciones más utilizadas

{% if current_user.can_edit() %} Nueva Contraseña Crear nueva entrada {% endif %} Exportar Descargar datos {% if current_user.can_edit() %} Importar Cargar archivo {% endif %} Mi Perfil Configuración
{% endblock %} {% block extra_js %} {% endblock %}