{% extends "base.html" %} {% block title %}Dashboard - EMI{% endblock %} {% block content %} {% set user_perms = user.rol.permisos | map(attribute='codigo') | list %} {% set is_root = user.rol.nombre == 'root' %}

Panel de Gestión

Bienvenido, {{ user.username }}

{% if is_root or 'areas.view' in user_perms %}
Áreas
{% endif %} {% if is_root or 'salones.view' in user_perms %}
Salones
{% endif %} {% if is_root or 'aulas.view' in user_perms %}
Aulas
{% endif %} {% if is_root or 'donaciones.view' in user_perms %}
Donaciones
{% endif %} {% if is_root or 'preparados.view' in user_perms %}
Alimentos Preparados
{% endif %} {% if is_root or 'distribuciones.view' in user_perms %}
Distribución
{% endif %} {% if is_root or 'recepcion.view' in user_perms %}
Recepción
{% endif %} {% if is_root or 'ensenanza.view' in user_perms %}
Enseñanza
{% endif %} {% if is_root or 'logistica.view' in user_perms %}
Logística
{% endif %} {% if is_root or 'otras_areas.view' in user_perms %}
Otras Áreas
{% endif %} {% if is_root or user.rol.nombre == 'administrador' %}
Pastores
{% endif %} {% if is_root or user.rol.nombre == 'administrador' %}
Líderes
{% endif %} {% if is_root or user.rol.nombre == 'administrador' %}
Coordinadores
{% endif %} {% if is_root or user.rol.nombre == 'administrador' %}
Capitanes
{% endif %} {% if is_root or 'servidores.view' in user_perms %}
Servidores
{% endif %} {% if is_root or user.rol.nombre == 'administrador' %}
Docentes
{% endif %} {% if is_root or user.rol.nombre == 'administrador' %}
Auxiliares
{% endif %} {% if is_root or user.rol.nombre == 'administrador' %}
Colaboradores
{% endif %} {% if is_root %}
Análisis Estadístico
{% endif %} {% if is_root or 'reporte.view' in user_perms %}
Reporte Estadístico
{% endif %} {% if is_root or 'ayuda.view' in user_perms %} {# Enlace a la vista de ayuda #}
Ayuda
{% endif %}
{% endblock %}