improve table layout 'internet connection'

This commit is contained in:
glaszig 2021-04-03 17:49:04 +01:00
parent 1d21f524f1
commit e5ac7d23a3
1 changed files with 30 additions and 32 deletions

View File

@ -18,10 +18,8 @@
<h4 class="mt-3"><?php echo _("Internet connection"); ?></h4> <h4 class="mt-3"><?php echo _("Internet connection"); ?></h4>
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<div class="card ">
<div class="card-body">
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-hover"> <table class="table">
<thead> <thead>
<tr> <tr>
<th><?php echo _("Interface"); ?></th> <th><?php echo _("Interface"); ?></th>
@ -31,30 +29,30 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<?php <?php if (isset($routeInfo["error"]) || empty($routeInfo)): ?>
if (isset($routeInfo["error"]) || empty($routeInfo)) { <tr><td colspan=5>No route to the internet found</td></tr>
echo "<tr><td colspan=5>No route to the internet found</td></tr>"; <?php else: ?>
} else { <?php foreach($routeInfo as $route): ?>
foreach($routeInfo as $route) { <tr>
echo "<tr>"; <td><?php echo $route['interface'] ?></td>
echo "<td>".$route["interface"]."</td>"; <td><?php echo $route['ip-address'] ?></td>
echo "<td>".$route["ip-address"]."</td>"; <td><?php echo $route['gateway'] ?><br><?php $route['gw-name'] ?></td>
echo "<td>".$route["gateway"]."<br>".$route["gw-name"]."</td>"; <td>
$status = $route["access-ip"] ? "fa-check" : "fa-times"; <p class="m-0">
echo '<td><i class="fas '.$status.'"></i><br>'.RASPI_ACCESS_CHECK_IP.'</td>'; <i class="fas <?php echo $route["access-ip"] ? "fa-check" : "fa-times"; ?>"></i> <?php echo RASPI_ACCESS_CHECK_IP ?>
$status = $route["access-dns"] ? "fa-check" : "fa-times"; </p>
echo '<td><i class="fas '.$status.'"></i><br>'.RASPI_ACCESS_CHECK_DNS.'</td>'; <p class="m-0">
echo "</tr>"; <i class="fas <?php echo $route["access-dns"] ? "fa-check" : "fa-times"; ?>"></i> <?php echo RASPI_ACCESS_CHECK_DNS ?>
} </p>
} </td>
?> </tr>
<?php endforeach ?>
<?php endif ?>
</tbody> </tbody>
</table> </table>
</div> </div>
</div> </div>
</div> </div>
</div>
</div>
<h4 class="mt-3"><?php echo _("Current settings") ?></h4> <h4 class="mt-3"><?php echo _("Current settings") ?></h4>
<div class="row"> <div class="row">
<?php if (!$bridgedEnabled) : // No interface details when bridged ?> <?php if (!$bridgedEnabled) : // No interface details when bridged ?>