MMDVMHost-Dashboard/include/repeaterinfo.php
Tony Corbett G0WFV ed5b857e45 Corrected English
2016-05-05 20:21:55 +01:00

26 lines
694 B
PHP

<div class="panel panel-default">
<!-- Standard-Panel-Inhalt -->
<div class="panel-heading">Repeater Info</div>
<div class="panel-body">
<p>Some info about link states</p>
</div>
<!-- Tabelle -->
<table class="table">
<tr>
<th>Actual Mode</th>
<th>D-Star linked to</th>
<th>DMR TS1 last linked to</th>
<th>DMR TS2 last linked to</th>
</tr>
<?php
echo"<tr>";
echo"<td>".getActualMode($logLines)."</td>";
echo"<td>".getActualLink($logLines, "D-Star")."</td>";
echo"<td>".getActualLink($logLines, "DMR Slot 1")."</td>";
echo"<td>".getActualLink($logLines, "DMR Slot 2")."</td>";
echo"</tr>\n";
?>
</table>
</div>