Add details for station
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
594636b5cc
commit
fd42ffd987
3 changed files with 648 additions and 173 deletions
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue