79 lines
3.1 KiB
HTML
79 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Health Status</title>
|
|
<meta charset="utf-8">
|
|
<link href="../base1/bootstrap.min.css" type="text/css" rel="stylesheet">
|
|
<script src="../base1/cockpit.js"></script>
|
|
<script src="../base1/jquery-3.7.1.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container mt-5 mb-5">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h2 class="fw-bold">Health Status</h2>
|
|
<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="droneName"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">IP Address</th>
|
|
<td id="ipAddress"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Docker Container</th>
|
|
<td id="dockerContainer"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Connection Upstream</th>
|
|
<td id="connectionUpstream"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Network SSID</th>
|
|
<td id="networkSSID"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Camera Devices</th>
|
|
<td id="cameraDevices"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Connected Devices</th>
|
|
<td id="connectedDevices"></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Zerotier IP</th>
|
|
<td id="zerotierIP">N/A</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Hotspot Connections</th>
|
|
<td id="hotspotConnections">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="fcuFirmware">N/A</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="health.js"></script>
|
|
</body>
|
|
|
|
</html> |