-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
496a604
commit 0a81b84
Showing
11 changed files
with
473 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<div> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-3"> | ||
<table class="table table-striped"> | ||
<thead> | ||
<tr> | ||
<th scope="col">Name</th> | ||
|
||
<th scope="col">Frequency</th> | ||
|
||
</tr> | ||
</thead> | ||
<tbody class="deviceList"> | ||
|
||
</tbody> | ||
</table> | ||
</div> | ||
<div class="col-9" style="height:800px"> | ||
<div id="map" style="flex-basis: 0;flex-grow: 4;height: 100%;"></div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div class="deviceMapList" style="display:none"> | ||
|
||
</div> | ||
|
||
<div class="templates" style="display:none"> | ||
|
||
|
||
|
||
<div class="deviceTemplate"> | ||
<table> | ||
<tr class="table deviceItem"> | ||
<td class="deviceName"></td> | ||
<td class="deviceFrequency"></td> | ||
<td style="display:none"> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-12 deviceIpAddressRow"><a class="btnDeviceOpen" href="javascript:void(0)"><span class="deviceIpAddress"><span></a></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"><span class="deviceType"><span></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"><span class="deviceModel"><span></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"><span class="deviceLinkName"><span></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"><span class="deviceStationCount"><span></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"><span class="deviceLinkScore"><span></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="deviceStatus"> | ||
<i class="fa-solid fa-check text-success deviceStatusOk" role="status" style="display:none"></i> | ||
<div class="spinner-border text-primary deviceStatusRefresh" role="status" style="display:none"> | ||
<span class="sr-only">Loading...</span> | ||
</div> | ||
<i class="fa-solid fa-circle-exclamation text-warning deviceStatusWarning" role="status" style="display:none"></i> | ||
<i class="fa-solid fa-circle-exclamation text-danger deviceStatusError" role="status" style="display:none"></i> | ||
<i class="fa-solid fa-circle-exclamation text-danger deviceStatusOffline" role="status" style="display:none"></i> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="deviceAction"> | ||
<div class="btn-group" role="group" aria-label="Device Actions"> | ||
<button type="button" class="btn btn-small btn-outline-success btnDeviceRefresh"> <i class="fa-solid fa-arrow-rotate-right"></i></button> | ||
<button type="button" class="btn btn-small btn-outline-danger btnDeviceRestart"><i class="fa-solid fa-power-off"></i></button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</td> | ||
|
||
|
||
</tr> | ||
</table> | ||
</div> | ||
|
||
<div class="deviceMapTemplate"> | ||
<table class="table deviceMapItem"> | ||
<tr> | ||
<td class="deviceName"></td> | ||
<td class="deviceFrequency"></td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
</div> | ||
</div> |
Oops, something went wrong.