fixed margins on health table

This commit is contained in:
Alice Sedgwick 2024-11-30 20:39:45 -05:00
parent 447a0348a2
commit bc4bd7d39b

View File

@ -17,61 +17,61 @@
<div class="card-header">
<img src="assets/icons/drone-icon.svg" width="50px" height="50px" class="me-2"/><span>At a glance view of the status of the drone.</span>
</div>
<div class="card-body">
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Drone</th>
<td id="name"></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">IP Address</th>
<td id="address"></td>
</tr>
<tr>
<th scope="row">Docker Container</th>
<td id="container"></td>
</tr>
<tr>
<th scope="row">Connection Upstream</th>
<td id="upstream"></td>
</tr>
<tr>
<th scope="row">Network SSID</th>
<td id="ssid"></td>
</tr>
<tr>
<th scope="row">Camera Devices</th>
<td id="camera"></td>
</tr>
<tr>
<th scope="row">Connected Devices</th>
<td id="devices"></td>
</tr>
<tr>
<th scope="row">Zerotier IP</th>
<td id="zerotier">N/A</td>
</tr>
<tr>
<th scope="row">Hotspot Connections</th>
<td id="hotspot">N/A</td>
</tr>
<tr>
<th scope="row">GCS</th>
<td id="gcs">N/A</td>
</tr>
<tr>
<th scope="row">FCU Firmware</th>
<td id="fcu">N/A</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Drone</th>
<td id="name"></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">IP Address</th>
<td id="address"></td>
</tr>
<tr>
<th scope="row">Docker Container</th>
<td id="container"></td>
</tr>
<tr>
<th scope="row">Connection Upstream</th>
<td id="upstream"></td>
</tr>
<tr>
<th scope="row">Network SSID</th>
<td id="ssid"></td>
</tr>
<tr>
<th scope="row">Camera Devices</th>
<td id="camera"></td>
</tr>
<tr>
<th scope="row">Connected Devices</th>
<td id="devices"></td>
</tr>
<tr>
<th scope="row">Zerotier IP</th>
<td id="zerotier">N/A</td>
</tr>
<tr>
<th scope="row">Hotspot Connections</th>
<td id="hotspot">N/A</td>
</tr>
<tr>
<th scope="row">GCS</th>
<td id="gcs">N/A</td>
</tr>
<tr>
<th scope="row">FCU Firmware</th>
<td id="fcu">N/A</td>
</tr>
</tbody>
</table>
<script src="health.js"></script>
</body>