luci-mod-network,-status: update DHCPv6 lease headers
authorDavid Härdeman <[email protected]>
Sun, 5 Oct 2025 05:51:23 +0000 (07:51 +0200)
committerPaul Donald <[email protected]>
Fri, 24 Oct 2025 18:23:34 +0000 (20:23 +0200)
Make it clearer that a single DHCPv6 lease can encompass several IPv6
addresses, e.g.  when GUA and ULA prefixes are available.

Signed-off-by: David Härdeman <[email protected]>
modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js
modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js

index ce6855fe48db2ce68407975dfca3a39ca21ad87d..e5c083babda5ad6fc57d6740056430cc89a457cb 100644 (file)
@@ -62,7 +62,7 @@ CBILease6Status = form.DummyValue.extend({
                        E('table', { 'id': 'lease6_status_table', 'class': 'table' }, [
                                E('tr', { 'class': 'tr table-titles' }, [
                                        E('th', { 'class': 'th' }, _('Hostname')),
-                                       E('th', { 'class': 'th' }, _('IPv6 address')),
+                                       E('th', { 'class': 'th' }, _('IPv6 addresses')),
                                        E('th', { 'class': 'th' }, _('DUID')),
                                        E('th', { 'class': 'th' }, _('IAID')),
                                        E('th', { 'class': 'th' }, _('Lease time remaining'))
index 99dc67af52e4cc119c0d702792b3119236490c55..7804cb72f712a195d6d821ad72ac3b7575fd10ee 100644 (file)
@@ -146,7 +146,7 @@ return baseclass.extend({
                var table6 = E('table', { 'id': 'status_leases6', 'class': 'table leases6' }, [
                        E('tr', { 'class': 'tr table-titles' }, [
                                E('th', { 'class': 'th' }, _('Host')),
-                               E('th', { 'class': 'th' }, _('IPv6 address')),
+                               E('th', { 'class': 'th' }, _('IPv6 addresses')),
                                E('th', { 'class': 'th' }, _('DUID')),
                                E('th', { 'class': 'th' }, _('IAID')),
                                E('th', { 'class': 'th' }, _('Lease time remaining')),