mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Fix index of known networks
Index now stored in the network array
This commit is contained in:
parent
8778d225ac
commit
7df8f68621
@ -14,12 +14,11 @@
|
|||||||
</div>
|
</div>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?php $index = 0; ?>
|
|
||||||
|
|
||||||
<?php if (!empty($connected)): ?>
|
<?php if (!empty($connected)): ?>
|
||||||
<h4 class="h-underlined my-3"><?php echo _("Connected") ?></h4>
|
<h4 class="h-underlined my-3"><?php echo _("Connected") ?></h4>
|
||||||
<div class="card-grid">
|
<div class="card-grid">
|
||||||
<?php foreach ($connected as $network) : ?>
|
<?php foreach ($connected as $network) : ?>
|
||||||
|
<?php $index = isset($network['index']) ? $network['index'] : -1; ?>
|
||||||
<?php echo renderTemplate("wifi_stations/network", compact('network', 'index')) ?>
|
<?php echo renderTemplate("wifi_stations/network", compact('network', 'index')) ?>
|
||||||
<?php $index++; ?>
|
<?php $index++; ?>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
@ -30,6 +29,7 @@
|
|||||||
<h4 class="h-underlined my-3"><?php echo _("Known") ?></h4>
|
<h4 class="h-underlined my-3"><?php echo _("Known") ?></h4>
|
||||||
<div class="card-grid">
|
<div class="card-grid">
|
||||||
<?php foreach ($known as $network) : ?>
|
<?php foreach ($known as $network) : ?>
|
||||||
|
<?php $index = isset($network['index']) ? $network['index'] : -1; ?>
|
||||||
<?php echo renderTemplate("wifi_stations/network", compact('network', 'index')) ?>
|
<?php echo renderTemplate("wifi_stations/network", compact('network', 'index')) ?>
|
||||||
<?php $index++; ?>
|
<?php $index++; ?>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
@ -40,6 +40,7 @@
|
|||||||
<h4 class="h-underlined my-3"><?php echo _("Nearby") ?></h4>
|
<h4 class="h-underlined my-3"><?php echo _("Nearby") ?></h4>
|
||||||
<div class="card-grid">
|
<div class="card-grid">
|
||||||
<?php foreach ($nearby as $network) : ?>
|
<?php foreach ($nearby as $network) : ?>
|
||||||
|
<?php $index = isset($network['index']) ? $network['index'] : -1; ?>
|
||||||
<?php echo renderTemplate("wifi_stations/network", compact('network', 'index')) ?>
|
<?php echo renderTemplate("wifi_stations/network", compact('network', 'index')) ?>
|
||||||
<?php $index++; ?>
|
<?php $index++; ?>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user