2016-05-02 10:19:08 +02:00
|
|
|
<div class="panel panel-default">
|
|
|
|
<!-- Standard-Panel-Inhalt -->
|
|
|
|
<div class="panel-heading">Repeater Info</div>
|
2016-05-02 17:36:19 +02:00
|
|
|
<div class="panel-body">
|
|
|
|
<p>Some Infos about link-states</p>
|
|
|
|
</div>
|
2016-05-02 10:19:08 +02:00
|
|
|
|
|
|
|
<!-- Tabelle -->
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<th>Actual Mode</th>
|
2016-05-04 19:45:26 +02:00
|
|
|
<th>D-Star last linked to</th>
|
|
|
|
<th>DMR TS1 last linked to</th>
|
|
|
|
<th>DMR TS2 last linked to</th>
|
2016-05-02 10:19:08 +02:00
|
|
|
</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>
|