mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-25 00:50:29 +00:00
Prettify php
This commit is contained in:
parent
88600f05de
commit
65381ecdbb
1 changed files with 5 additions and 7 deletions
|
@ -1,11 +1,7 @@
|
|||
<?php if (empty($networks)) : ?>
|
||||
<?php if (empty($networks)) { ?>
|
||||
<p class="lead text-center"><?php echo _('No Wifi stations found') ?></p>
|
||||
<p class="text-center"><?php echo _('Click "Rescan" to search for nearby Wifi stations.') ?></p>
|
||||
<?php endif ?>
|
||||
<?php $index = 0; ?>
|
||||
<div class="row ml-1 mr-1 w-100">
|
||||
<?php
|
||||
if (count($networks) == 1) {
|
||||
<?php } elseif (count($networks) == 1) {
|
||||
$prop_col = "col-sm-12";
|
||||
$prop_w = "w-50";
|
||||
} else {
|
||||
|
@ -13,7 +9,9 @@ if (count($networks) == 1) {
|
|||
$prop_w = "w-100";
|
||||
}
|
||||
?>
|
||||
<?php foreach ($networks as $ssid => $network) : ?>
|
||||
<?php $index = 0; ?>
|
||||
<div class="row ml-1 mr-1 w-100">
|
||||
<?php foreach ($networks as $ssid => $network) : ?>
|
||||
<div class="<?php echo $prop_col; ?> align-items-stretch mb-3">
|
||||
<div class="card h-100 <?php echo $prop_w; ?>">
|
||||
<div class="card-body">
|
||||
|
|
Loading…
Reference in a new issue