Skip to content

Commit

Permalink
luci-mod-admin-full: replace status page legend tags with h3 (#1907)
Browse files Browse the repository at this point in the history
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
  • Loading branch information
jow- committed Jun 25, 2018
1 parent 483c9d3 commit 86c6c60
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm
Expand Up @@ -587,7 +587,7 @@
<h2 name="content"><%:Status%></h2>

<div class="cbi-section">
<legend><%:System%></legend>
<h3><%:System%></h3>

<div class="table" width="100%">
<div class="tr"><div class="td left" width="33%"><%:Hostname%></div><div class="td left"><%=luci.sys.hostname() or "?"%></div></div>
Expand All @@ -605,7 +605,7 @@ <h2 name="content"><%:Status%></h2>
</div>

<div class="cbi-section">
<legend><%:Memory%></legend>
<h3><%:Memory%></h3>

<div class="table" width="100%">
<div class="tr"><div class="td left" width="33%"><%:Total Available%></div><div class="td left" id="memtotal">-</div></div>
Expand All @@ -616,7 +616,7 @@ <h2 name="content"><%:Status%></h2>

<% if swapinfo.total > 0 then %>
<div class="cbi-section">
<legend><%:Swap%></legend>
<h3><%:Swap%></h3>

<div class="table" width="100%">
<div class="tr"><div class="td left" width="33%"><%:Total Available%></div><div class="td left" id="swaptotal">-</div></div>
Expand All @@ -626,7 +626,7 @@ <h2 name="content"><%:Status%></h2>
<% end %>

<div class="cbi-section">
<legend><%:Network%></legend>
<h3><%:Network%></h3>

<div id="upstream_status_table" class="network-status-table">
<em><%:Collecting data...%></em>
Expand All @@ -639,7 +639,7 @@ <h2 name="content"><%:Status%></h2>

<% if has_dhcp then %>
<div class="cbi-section">
<legend><%:DHCP Leases%></legend>
<h3><%:DHCP Leases%></h3>

<div class="cbi-section-node">
<div class="table" id="lease_status_table">
Expand All @@ -657,7 +657,7 @@ <h2 name="content"><%:Status%></h2>
</div>

<div class="cbi-section" style="display:none">
<legend><%:DHCPv6 Leases%></legend>
<h3><%:DHCPv6 Leases%></h3>

<div class="cbi-section-node">
<div class="table" id="lease6_status_table">
Expand All @@ -677,7 +677,7 @@ <h2 name="content"><%:Status%></h2>

<% if has_dsl then %>
<div class="cbi-section">
<legend><%:DSL%></legend>
<h3><%:DSL%></h3>

<div class="cbi-section-node">
<div class="table" width="100%">
Expand All @@ -699,15 +699,15 @@ <h2 name="content"><%:Status%></h2>

<% if has_wifi then %>
<div class="cbi-section">
<legend><%:Wireless%></legend>
<h3><%:Wireless%></h3>

<div id="wifi_status_table" class="network-status-table">
<em><%:Collecting data...%></em>
</div>
</div>

<div class="cbi-section">
<legend><%:Associated Stations%></legend>
<h3><%:Associated Stations%></h3>

<div class="cbi-section-node">
<div class="table" id="wifi_assoc_table">
Expand Down

0 comments on commit 86c6c60

Please sign in to comment.