mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Update w/ fontawesome glyphs
This commit is contained in:
parent
51a71808d3
commit
cfbfff00a9
1 changed files with 4 additions and 4 deletions
|
@ -54,10 +54,10 @@
|
|||
echo "<td>".$route["interface"]."</td>";
|
||||
echo "<td>".$route["ip-address"]."</td>";
|
||||
echo "<td>".$route["gateway"]."<br>".$route["gw-name"]."</td>";
|
||||
$checkok = $route["access-ip"] ? "✓" : "failed";
|
||||
echo "<td>".$checkok."<br>".RASPI_ACCESS_CHECK_IP."</td>";
|
||||
$checkok = $route["access-dns"] ? "✓" : "failed";
|
||||
echo "<td>".$checkok."<br>".RASPI_ACCESS_CHECK_DNS."</td>";
|
||||
$status = $route["access-ip"] ? "fa-check" : "fa-times";
|
||||
echo '<td><i class="fas '.$status.'"></i><br>'.RASPI_ACCESS_CHECK_IP.'</td>';
|
||||
$status = $route["access-dns"] ? "fa-check" : "fa-times";
|
||||
echo '<td><i class="fas '.$status.'"></i><br>'.RASPI_ACCESS_CHECK_DNS.'</td>';
|
||||
echo "</tr>";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue