diff --git a/calendario.html b/calendario.html index 9b379ed..bb4db9a 100644 --- a/calendario.html +++ b/calendario.html @@ -615,6 +615,14 @@ const estadoCia = raw['ACTUALMENTE EN'] || raw['Estado'] || raw['ESTADO'] || raw['Situación'] || ""; const tagEstado = estadoCia ? `${estadoCia}` : ''; + // 🛑 NUEVO: EXTRAER Y PINTAR LOS ICONOS DE CANDADO Y OJOS + const hasLock = raw.has_lock === true || String(raw.has_lock) === 'true'; + const hasEyes = raw.has_eyes === true || String(raw.has_eyes) === 'true'; + + let alertBadges = ''; + if (hasLock) alertBadges += ``; + if (hasEyes) alertBadges += ``; + return `
${addr}
`;