404 lines
22 KiB
HTML
404 lines
22 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="es">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Inventschario — Inventario</title>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||
|
|
<style>
|
||
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
|
body {
|
||
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
||
|
|
color: #1a1a1a;
|
||
|
|
background: #f7f7f5;
|
||
|
|
line-height: 1.5;
|
||
|
|
display: flex;
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Sidebar — same as dashboard */
|
||
|
|
.sidebar {
|
||
|
|
width: 240px;
|
||
|
|
background: #ffffff;
|
||
|
|
border-right: 1px solid #e5e5e3;
|
||
|
|
padding: 20px 0;
|
||
|
|
flex-shrink: 0;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
.sidebar-logo { padding: 0 20px 20px; border-bottom: 1px solid #e5e5e3; margin-bottom: 8px; }
|
||
|
|
.sidebar-logo h1 { font-size: 16px; font-weight: 700; }
|
||
|
|
.sidebar-logo span { font-size: 11px; color: #999; display: block; margin-top: 2px; }
|
||
|
|
.nav-section { padding: 8px 12px; }
|
||
|
|
.nav-label { font-size: 11px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 8px 4px; }
|
||
|
|
.nav-item {
|
||
|
|
display: flex; align-items: center; gap: 10px; padding: 8px 12px;
|
||
|
|
border-radius: 6px; font-size: 14px; color: #666; cursor: pointer;
|
||
|
|
text-decoration: none; transition: background 0.15s, color 0.15s;
|
||
|
|
}
|
||
|
|
.nav-item:hover { background: #f0f0ee; color: #1a1a1a; }
|
||
|
|
.nav-item.active { background: #f0f0ee; color: #1a1a1a; font-weight: 500; }
|
||
|
|
.nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
|
||
|
|
.nav-spacer { flex: 1; }
|
||
|
|
.nav-footer { padding: 12px 20px; border-top: 1px solid #e5e5e3; font-size: 12px; color: #999; }
|
||
|
|
|
||
|
|
.main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
|
||
|
|
.topbar {
|
||
|
|
background: #ffffff; border-bottom: 1px solid #e5e5e3;
|
||
|
|
padding: 16px 32px; display: flex; align-items: center; justify-content: space-between;
|
||
|
|
}
|
||
|
|
.topbar h2 { font-size: 18px; font-weight: 600; }
|
||
|
|
.topbar-actions { display: flex; gap: 10px; }
|
||
|
|
.btn {
|
||
|
|
padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 500;
|
||
|
|
cursor: pointer; border: 1px solid #e5e5e3; background: #fff; color: #1a1a1a;
|
||
|
|
transition: background 0.15s; font-family: inherit;
|
||
|
|
}
|
||
|
|
.btn:hover { background: #f0f0ee; }
|
||
|
|
.btn-primary { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
|
||
|
|
.btn-primary:hover { background: #333; }
|
||
|
|
.btn-danger { background: #fff; color: #dc2626; border-color: #fca5a5; }
|
||
|
|
.btn-danger:hover { background: #fef2f2; }
|
||
|
|
|
||
|
|
.content { padding: 32px; overflow-y: auto; flex: 1; }
|
||
|
|
|
||
|
|
/* Toolbar */
|
||
|
|
.toolbar {
|
||
|
|
display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
.search-box {
|
||
|
|
flex: 1; min-width: 240px; position: relative;
|
||
|
|
}
|
||
|
|
.search-box input {
|
||
|
|
width: 100%; padding: 8px 12px 8px 36px; border: 1px solid #e5e5e3;
|
||
|
|
border-radius: 6px; font-size: 13px; font-family: inherit; background: #fff;
|
||
|
|
}
|
||
|
|
.search-box input:focus { outline: 2px solid #1a1a1a; outline-offset: -1px; }
|
||
|
|
.search-box svg {
|
||
|
|
position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
|
||
|
|
width: 16px; height: 16px; color: #999;
|
||
|
|
}
|
||
|
|
.filter-group { display: flex; gap: 8px; }
|
||
|
|
.filter-select {
|
||
|
|
padding: 8px 12px; border: 1px solid #e5e5e3; border-radius: 6px;
|
||
|
|
font-size: 13px; font-family: inherit; background: #fff; color: #1a1a1a;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
.filter-select:focus { outline: 2px solid #1a1a1a; outline-offset: -1px; }
|
||
|
|
|
||
|
|
/* Selection bar */
|
||
|
|
.selection-bar {
|
||
|
|
background: #1a1a1a; color: #fff; padding: 10px 20px; border-radius: 8px;
|
||
|
|
margin-bottom: 16px; display: flex; align-items: center; gap: 16px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
.selection-bar .btn {
|
||
|
|
background: transparent; color: #fff; border-color: rgba(255,255,255,0.2);
|
||
|
|
padding: 4px 12px; font-size: 12px;
|
||
|
|
}
|
||
|
|
.selection-bar .btn:hover { background: rgba(255,255,255,0.1); }
|
||
|
|
|
||
|
|
/* Table */
|
||
|
|
.table-card {
|
||
|
|
background: #ffffff; border: 1px solid #e5e5e3; border-radius: 8px; overflow: hidden;
|
||
|
|
}
|
||
|
|
table { width: 100%; border-collapse: collapse; }
|
||
|
|
th {
|
||
|
|
text-align: left; padding: 10px 16px; font-size: 11px; font-weight: 600;
|
||
|
|
color: #999; text-transform: uppercase; letter-spacing: 0.3px;
|
||
|
|
border-bottom: 1px solid #e5e5e3; background: #fafafa; cursor: pointer;
|
||
|
|
user-select: none; white-space: nowrap;
|
||
|
|
}
|
||
|
|
th:hover { color: #1a1a1a; }
|
||
|
|
th .sort-icon { margin-left: 4px; opacity: 0.4; }
|
||
|
|
th.sorted .sort-icon { opacity: 1; color: #1a1a1a; }
|
||
|
|
td {
|
||
|
|
padding: 12px 16px; font-size: 13px; border-bottom: 1px solid #f0f0ee;
|
||
|
|
vertical-align: middle;
|
||
|
|
}
|
||
|
|
tr:last-child td { border-bottom: none; }
|
||
|
|
tr:hover td { background: #fafaf8; }
|
||
|
|
tr.selected td { background: #f0f0ee; }
|
||
|
|
|
||
|
|
/* Checkbox */
|
||
|
|
.checkbox { width: 16px; height: 16px; cursor: pointer; accent-color: #1a1a1a; }
|
||
|
|
|
||
|
|
/* Badges */
|
||
|
|
.badge {
|
||
|
|
display: inline-block; padding: 2px 8px; border-radius: 4px;
|
||
|
|
font-size: 11px; font-weight: 500;
|
||
|
|
}
|
||
|
|
.badge-active { background: #dcfce7; color: #166534; }
|
||
|
|
.badge-available { background: #e0e7ff; color: #3730a3; }
|
||
|
|
.badge-maintenance { background: #fef3c7; color: #92400e; }
|
||
|
|
.badge-decommissioned { background: #f3f4f6; color: #6b7280; }
|
||
|
|
.badge-disposed { background: #fee2e2; color: #991b1b; }
|
||
|
|
.badge-computer { background: #f0f0ee; color: #555; }
|
||
|
|
.badge-monitor { background: #eff6ff; color: #1d4ed8; }
|
||
|
|
.badge-laptop { background: #fdf4ff; color: #9333ea; }
|
||
|
|
.badge-printer { background: #fef3c7; color: #92400e; }
|
||
|
|
.badge-network { background: #ecfdf5; color: #065f46; }
|
||
|
|
|
||
|
|
/* Row actions */
|
||
|
|
.row-actions { display: flex; gap: 4px; }
|
||
|
|
.row-action {
|
||
|
|
width: 28px; height: 28px; border-radius: 4px; border: none;
|
||
|
|
background: transparent; cursor: pointer; display: flex;
|
||
|
|
align-items: center; justify-content: center; color: #999;
|
||
|
|
transition: background 0.15s, color 0.15s;
|
||
|
|
}
|
||
|
|
.row-action:hover { background: #f0f0ee; color: #1a1a1a; }
|
||
|
|
.row-action svg { width: 14px; height: 14px; }
|
||
|
|
|
||
|
|
/* Pagination */
|
||
|
|
.pagination {
|
||
|
|
display: flex; align-items: center; justify-content: space-between;
|
||
|
|
padding: 12px 16px; border-top: 1px solid #e5e5e3; font-size: 13px; color: #666;
|
||
|
|
}
|
||
|
|
.pagination-info { font-size: 12px; }
|
||
|
|
.pagination-controls { display: flex; gap: 4px; }
|
||
|
|
.page-btn {
|
||
|
|
padding: 4px 10px; border-radius: 4px; border: 1px solid #e5e5e3;
|
||
|
|
background: #fff; cursor: pointer; font-size: 12px; font-family: inherit;
|
||
|
|
}
|
||
|
|
.page-btn:hover { background: #f0f0ee; }
|
||
|
|
.page-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
|
||
|
|
|
||
|
|
/* Focus styles */
|
||
|
|
*:focus-visible { outline: 2px solid #1a1a1a; outline-offset: 2px; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<!-- Sidebar -->
|
||
|
|
<nav class="sidebar" role="navigation" aria-label="Menú principal">
|
||
|
|
<div class="sidebar-logo">
|
||
|
|
<h1>Inventschario</h1>
|
||
|
|
<span>Inventario Electrónico</span>
|
||
|
|
</div>
|
||
|
|
<div class="nav-section">
|
||
|
|
<div class="nav-label">Principal</div>
|
||
|
|
<a class="nav-item" href="#dashboard">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="3" width="7" height="7" rx="1"/><rect x="14" y="3" width="7" height="7" rx="1"/><rect x="3" y="14" width="7" height="7" rx="1"/><rect x="14" y="14" width="7" height="7" rx="1"/></svg>
|
||
|
|
Dashboard
|
||
|
|
</a>
|
||
|
|
<a class="nav-item active" href="#inventory" aria-current="page">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2"/><rect x="9" y="3" width="6" height="4" rx="1"/></svg>
|
||
|
|
Inventario
|
||
|
|
</a>
|
||
|
|
<a class="nav-item" href="#add">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="16"/><line x1="8" y1="12" x2="16" y2="12"/></svg>
|
||
|
|
Agregar Dispositivo
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
<div class="nav-section">
|
||
|
|
<div class="nav-label">Herramientas</div>
|
||
|
|
<a class="nav-item" href="#import">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"/><polyline points="17 8 12 3 7 8"/><line x1="12" y1="3" x2="12" y2="15"/></svg>
|
||
|
|
Importar / Exportar
|
||
|
|
</a>
|
||
|
|
<a class="nav-item" href="#backups">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 21H5a2 2 0 01-2-2V5a2 2 0 012-2h11l5 5v11a2 2 0 01-2 2z"/><polyline points="17 21 17 13 7 13 7 21"/><polyline points="7 3 7 8 15 8"/></svg>
|
||
|
|
Copias de Seguridad
|
||
|
|
</a>
|
||
|
|
<a class="nav-item" href="#settings">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 012.83-2.83l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 2.83l-.06.06a1.65 1.65 0 00-.33 1.82V9c.26.604.852.997 1.51 1H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z"/></svg>
|
||
|
|
Configuración
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
<div class="nav-spacer"></div>
|
||
|
|
<div class="nav-footer">v1.0.0 — 2026-08-03</div>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
<!-- Main Content -->
|
||
|
|
<main class="main" role="main">
|
||
|
|
<header class="topbar">
|
||
|
|
<h2>Inventario <span style="font-weight: 400; color: #999; font-size: 14px;">(247 dispositivos)</span></h2>
|
||
|
|
<div class="topbar-actions">
|
||
|
|
<button class="btn" aria-label="Exportar selección a CSV">⬇ Exportar</button>
|
||
|
|
<button class="btn btn-primary" aria-label="Agregar nuevo dispositivo">+ Nuevo</button>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<div class="content">
|
||
|
|
<!-- Toolbar -->
|
||
|
|
<div class="toolbar" role="search">
|
||
|
|
<div class="search-box">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" aria-hidden="true"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>
|
||
|
|
<input type="search" placeholder="Buscar por nombre, número de serie, catálogo..." aria-label="Buscar dispositivos">
|
||
|
|
</div>
|
||
|
|
<div class="filter-group">
|
||
|
|
<select class="filter-select" aria-label="Filtrar por tipo">
|
||
|
|
<option value="">Todos los tipos</option>
|
||
|
|
<option>Portátil</option>
|
||
|
|
<option>Sobremesa</option>
|
||
|
|
<option>Monitor</option>
|
||
|
|
<option>Impresora</option>
|
||
|
|
<option>Red</option>
|
||
|
|
<option>Periférico</option>
|
||
|
|
</select>
|
||
|
|
<select class="filter-select" aria-label="Filtrar por estado">
|
||
|
|
<option value="">Todos los estados</option>
|
||
|
|
<option>Activo</option>
|
||
|
|
<option>Disponible</option>
|
||
|
|
<option>Mantenimiento</option>
|
||
|
|
<option>Baja</option>
|
||
|
|
</select>
|
||
|
|
<select class="filter-select" aria-label="Filtrar por departamento">
|
||
|
|
<option value="">Todos los departamentos</option>
|
||
|
|
<option>Informática</option>
|
||
|
|
<option>Administración</option>
|
||
|
|
<option>Recursos Humanos</option>
|
||
|
|
<option>Contabilidad</option>
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Selection bar (hidden by default, shown when items selected) -->
|
||
|
|
<div class="selection-bar" role="status" aria-live="polite" style="display: none;">
|
||
|
|
<span>3 seleccionados</span>
|
||
|
|
<button class="btn">Exportar selección</button>
|
||
|
|
<button class="btn">Cambiar estado</button>
|
||
|
|
<button class="btn btn-danger">Eliminar</button>
|
||
|
|
<button class="btn" style="margin-left: auto;">Cancelar selección</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Table -->
|
||
|
|
<div class="table-card">
|
||
|
|
<table role="grid" aria-label="Lista de dispositivos">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th style="width: 40px;"><input type="checkbox" class="checkbox" aria-label="Seleccionar todos"></th>
|
||
|
|
<th class="sorted">Catálogo <span class="sort-icon">↓</span></th>
|
||
|
|
<th>Nombre / Descripción</th>
|
||
|
|
<th>Tipo</th>
|
||
|
|
<th>Marca / Modelo</th>
|
||
|
|
<th>Ubicación</th>
|
||
|
|
<th>Estado</th>
|
||
|
|
<th style="width: 100px;">Acciones</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<tr>
|
||
|
|
<td><input type="checkbox" class="checkbox" aria-label="Seleccionar INV-2024-0247"></td>
|
||
|
|
<td><strong>INV-2024-0247</strong></td>
|
||
|
|
<td>MacBook Pro 14" — Oficina Dirección</td>
|
||
|
|
<td><span class="badge badge-laptop">Portátil</span></td>
|
||
|
|
<td>Apple / MacBook Pro M3</td>
|
||
|
|
<td>Planta 2, Desp. 201</td>
|
||
|
|
<td><span class="badge badge-active">Activo</span></td>
|
||
|
|
<td>
|
||
|
|
<div class="row-actions">
|
||
|
|
<button class="row-action" title="Ver detalle" aria-label="Ver detalle de INV-2024-0247">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg>
|
||
|
|
</button>
|
||
|
|
<button class="row-action" title="Editar" aria-label="Editar INV-2024-0247">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"/><path d="M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z"/></svg>
|
||
|
|
</button>
|
||
|
|
<button class="row-action" title="Dar de baja" aria-label="Dar de baja INV-2024-0247" style="color: #dc2626;">
|
||
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"/></svg>
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td><input type="checkbox" class="checkbox" aria-label="Seleccionar INV-2024-0246"></td>
|
||
|
|
<td><strong>INV-2024-0246</strong></td>
|
||
|
|
<td>Dell P2723QE — Monitor 4K</td>
|
||
|
|
<td><span class="badge badge-monitor">Monitor</span></td>
|
||
|
|
<td>Dell / P2723QE</td>
|
||
|
|
<td>Almacén</td>
|
||
|
|
<td><span class="badge badge-available">Disponible</span></td>
|
||
|
|
<td>
|
||
|
|
<div class="row-actions">
|
||
|
|
<button class="row-action" title="Ver detalle"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg></button>
|
||
|
|
<button class="row-action" title="Editar"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"/><path d="M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z"/></svg></button>
|
||
|
|
<button class="row-action" title="Dar de baja" style="color: #dc2626;"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"/></svg></button>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td><input type="checkbox" class="checkbox" aria-label="Seleccionar INV-2024-0245"></td>
|
||
|
|
<td><strong>INV-2024-0245</strong></td>
|
||
|
|
<td>Lenovo ThinkPad T14s — Desarrollo</td>
|
||
|
|
<td><span class="badge badge-laptop">Portátil</span></td>
|
||
|
|
<td>Lenovo / ThinkPad T14s Gen 4</td>
|
||
|
|
<td>Planta 1, Open Space</td>
|
||
|
|
<td><span class="badge badge-active">Activo</span></td>
|
||
|
|
<td>
|
||
|
|
<div class="row-actions">
|
||
|
|
<button class="row-action" title="Ver detalle"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg></button>
|
||
|
|
<button class="row-action" title="Editar"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"/><path d="M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z"/></svg></button>
|
||
|
|
<button class="row-action" title="Dar de baja" style="color: #dc2626;"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"/></svg></button>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td><input type="checkbox" class="checkbox" aria-label="Seleccionar INV-2024-0244"></td>
|
||
|
|
<td><strong>INV-2024-0244</strong></td>
|
||
|
|
<td>HP LaserJet Pro M404dn</td>
|
||
|
|
<td><span class="badge badge-printer">Impresora</span></td>
|
||
|
|
<td>HP / LaserJet Pro M404dn</td>
|
||
|
|
<td>Planta 1, Reprografía</td>
|
||
|
|
<td><span class="badge badge-maintenance">Mantenimiento</span></td>
|
||
|
|
<td>
|
||
|
|
<div class="row-actions">
|
||
|
|
<button class="row-action" title="Ver detalle"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg></button>
|
||
|
|
<button class="row-action" title="Editar"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"/><path d="M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z"/></svg></button>
|
||
|
|
<button class="row-action" title="Dar de baja" style="color: #dc2626;"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"/></svg></button>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td><input type="checkbox" class="checkbox" aria-label="Seleccionar INV-2024-0243"></td>
|
||
|
|
<td><strong>INV-2024-0243</strong></td>
|
||
|
|
<td>Cisco Catalyst 2960 — Switch Planta 1</td>
|
||
|
|
<td><span class="badge badge-network">Red</span></td>
|
||
|
|
<td>Cisco / Catalyst 2960-24TC-L</td>
|
||
|
|
<td>Planta 1, Cuarto Redes</td>
|
||
|
|
<td><span class="badge badge-active">Activo</span></td>
|
||
|
|
<td>
|
||
|
|
<div class="row-actions">
|
||
|
|
<button class="row-action" title="Ver detalle"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg></button>
|
||
|
|
<button class="row-action" title="Editar"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"/><path d="M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z"/></svg></button>
|
||
|
|
<button class="row-action" title="Dar de baja" style="color: #dc2626;"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"/></svg></button>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td><input type="checkbox" class="checkbox" aria-label="Seleccionar INV-2024-0242"></td>
|
||
|
|
<td><strong>INV-2024-0242</strong></td>
|
||
|
|
<td>Dell OptiPlex 7090 — Recepción</td>
|
||
|
|
<td><span class="badge badge-computer">Sobremesa</span></td>
|
||
|
|
<td>Dell / OptiPlex 7090</td>
|
||
|
|
<td>Planta 0, Recepción</td>
|
||
|
|
<td><span class="badge badge-active">Activo</span></td>
|
||
|
|
<td>
|
||
|
|
<div class="row-actions">
|
||
|
|
<button class="row-action" title="Ver detalle"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg></button>
|
||
|
|
<button class="row-action" title="Editar"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"/><path d="M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z"/></svg></button>
|
||
|
|
<button class="row-action" title="Dar de baja" style="color: #dc2626;"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"/></svg></button>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<!-- Pagination -->
|
||
|
|
<div class="pagination">
|
||
|
|
<div class="pagination-info">Mostrando 1-20 de 247 dispositivos</div>
|
||
|
|
<div class="pagination-controls">
|
||
|
|
<button class="page-btn" aria-label="Página anterior">←</button>
|
||
|
|
<button class="page-btn active" aria-current="page">1</button>
|
||
|
|
<button class="page-btn">2</button>
|
||
|
|
<button class="page-btn">3</button>
|
||
|
|
<button class="page-btn">…</button>
|
||
|
|
<button class="page-btn">13</button>
|
||
|
|
<button class="page-btn" aria-label="Página siguiente">→</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
</body>
|
||
|
|
</html>
|