Files
serv_benchmark/frontend/devices.html
2025-12-08 05:42:52 +01:00

63 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Devices - Linux BenchTools</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/components.css">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container">
<h1>🚀 Linux BenchTools</h1>
<p>Gestion des devices</p>
<!-- Navigation -->
<nav class="nav">
<a href="index.html" class="nav-link">Dashboard</a>
<a href="devices.html" class="nav-link active">Devices</a>
<a href="settings.html" class="nav-link">Settings</a>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="container" style="max-width: 100%; padding: 0 1rem;">
<!-- Two-Panel Layout -->
<div style="display: flex; gap: 1rem; height: calc(100vh - 200px); margin-top: 1rem;">
<!-- Left Panel: Device List (1/5 width) -->
<div style="flex: 0 0 20%; display: flex; flex-direction: column; background: var(--card-bg); border-radius: 8px; overflow: hidden;">
<div style="padding: 1rem; border-bottom: 1px solid var(--border-color); font-weight: 600; font-size: 1.1rem;">
📋 Devices
</div>
<div id="deviceList" style="flex: 1; overflow-y: auto; padding: 0.5rem;">
<div class="loading">Chargement...</div>
</div>
</div>
<!-- Right Panel: Device Details (4/5 width) -->
<div style="flex: 1; background: var(--card-bg); border-radius: 8px; overflow-y: auto;">
<div id="deviceDetailsContainer" style="padding: 2rem;">
<div style="text-align: center; color: var(--text-secondary); padding: 4rem 2rem;">
<div style="font-size: 3rem; margin-bottom: 1rem;">📊</div>
<p style="font-size: 1.1rem;">Sélectionnez un device dans la liste pour afficher ses détails</p>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<p>&copy; 2025 Linux BenchTools - Self-hosted benchmarking tool</p>
</footer>
<!-- Scripts -->
<script src="js/utils.js"></script>
<script src="js/api.js"></script>
<script src="js/devices.js"></script>
</body>
</html>