Skip to content

Commit

Permalink
remove frequency column
Browse files Browse the repository at this point in the history
  • Loading branch information
ZanSara committed Jan 10, 2025
1 parent b105b6b commit c8f9829
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions zanzocam/web_ui/templates/network.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,16 @@
<h2>Reti Wifi Disponibili</h2>
<p>Ricarica la pagina per aggiornare la lista</p>
{% if wifi_list %}
<div style="display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; grid-gap: 8px; max-width: 100%; overflow-x: scroll;">
<div style="display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; grid-gap: 8px; max-width: 100%; overflow-x: scroll;">
<p style="font-weight: bold; margin-bottom:0.5rem;">SSID</p>
<p style="font-weight: bold; margin-bottom:0.5rem;">Livello</p>
<p style="font-weight: bold; margin-bottom:0.5rem;">Qualità</p>
<p style="font-weight: bold; margin-bottom:0.5rem;">Canale</p>
<p style="font-weight: bold; margin-bottom:0.5rem;">Frequenza</p>
{% for wifi in wifi_list %}
<p style="margin-bottom:0.5rem;">"{{ wifi.ssid }}"</p>
<p style="margin-bottom:0.5rem;">{{ wifi.signal }}</p>
<p style="margin-bottom:0.5rem;">{{ wifi.quality }}</p>
<p style="margin-bottom:0.5rem;">{{ wifi.channel }}</p>
<p style="margin-bottom:0.5rem;">{{ wifi.frequency }}</p>
{% endfor %}
</div>
{% else %}
Expand Down

0 comments on commit c8f9829

Please sign in to comment.