diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2016-08-24 11:46:20 +0300 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2016-08-24 11:46:20 +0300 |
commit | 107b3c7def7b02ac5d5a36b34d83d82dabd69f76 (patch) | |
tree | e0c83ab072030416fa9b78e67f9fc37d769049c2 /modules/luci-mod-admin-full | |
parent | f885853b5cc129f039309676ca8bdda0cb43122c (diff) |
luci-mod-admin-full: tweak checksum item presentation
Simplify the sysupgrade image checksum strings in order to
avoid translating "Checksum xxx" items both for MD5 and SHA256.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'modules/luci-mod-admin-full')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm b/modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm index 279af575c..7175248db 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_system/upgrade.htm @@ -24,8 +24,9 @@ <fieldset class="cbi-section"> <ul> - <li><%:Checksum MD5%>: <code><%=checksum%></code></li> - <li><%:Checksum SHA256%>: <code><%=sha256ch%></code></li> + <li><%:Checksum%><br /> + <%:MD5%>: <code><%=checksum%></code><br /> + <%:SHA256%>: <code><%=sha256ch%></code></li> <li><%:Size%>: <% local w = require "luci.tools.webadmin" write(w.byte_format(size)) |