diff --git a/plinth/modules/networks/templates/connections_list.html b/plinth/modules/networks/templates/connections_list.html index 194e630ee..116758410 100644 --- a/plinth/modules/networks/templates/connections_list.html +++ b/plinth/modules/networks/templates/connections_list.html @@ -41,54 +41,54 @@
- {% for conn in connections %} + {% for connection in connections %}
- + role="button" title="Delete connection {{ connection.name }}"> - {{ conn.name }} + href="{% url 'networks:edit' connection.uuid %}" + title="Edit connection {{ connection.name }}"> + {{ connection.name }} - {{ conn.type }} + {{ connection.type }} - {% if conn.is_active %} -
- - -
- {% else %} -
- - -
- {% endif %} + {% if connection.is_active %} +
+ + +
+ {% else %} +
+ + +
+ {% endif %}
{% endfor %} diff --git a/plinth/modules/networks/templates/wifi_scan.html b/plinth/modules/networks/templates/wifi_scan.html index 0e767b9fe..82bee5ae2 100644 --- a/plinth/modules/networks/templates/wifi_scan.html +++ b/plinth/modules/networks/templates/wifi_scan.html @@ -27,13 +27,13 @@
{% for ap in aps %}
- - {{ ap.ssid }} - - - {{ ap.strength }}% - + + {{ ap.ssid }} + + + {{ ap.strength }}% +
{% endfor %}