Add details for station
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Juanjo Gutiérrez 2026-02-06 14:52:58 +01:00
parent 594636b5cc
commit fd42ffd987
No known key found for this signature in database
GPG key ID: 2EE7726C7CA75D4E
3 changed files with 648 additions and 173 deletions

View file

@ -15,27 +15,38 @@
</div>
</header>
<main>
<div class="station-table-container">
<table id="station-table">
<thead>
<tr>
<th>MAC Address</th>
<th>Signal Strength</th>
<th>Rate(rx/tx)</th>
<th>Bytes(rx/tx)</th>
</tr>
</thead>
<tbody id="station-tbody">
<tr>
<td colspan="7" class="loading">Loading station data...</td>
</tr>
</tbody>
</table>
<main class="main-layout">
<div class="content-area">
<div class="station-table-container">
<table id="station-table">
<thead>
<tr>
<th>MAC Address</th>
<th>Signal Strength</th>
<th>Rate(rx/tx)</th>
<th>Bytes(rx/tx)</th>
</tr>
</thead>
<tbody id="station-tbody">
<tr>
<td colspan="7" class="loading">Loading station data...</td>
</tr>
</tbody>
</table>
</div>
<div id="error-message" class="error hidden">
<p>Error loading station data. Please check if the API is running.</p>
</div>
</div>
<div id="error-message" class="error hidden">
<p>Error loading station data. Please check if the API is running.</p>
<div id="station-details-panel" class="details-panel">
<div class="details-header">
<h2>Station Details</h2>
</div>
<div id="station-details-content" class="details-content">
<div class="loading">Select a station to view details</div>
</div>
</div>
</main>
@ -46,4 +57,4 @@
<script src="/static/script.js"></script>
</body>
</html>
</html>