12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%#
- LuCI - Lua Configuration Interface
- Copyright 2008 Mikeqin <Fenling.Qin@gmail.com>
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- $Id$
- -%>
- <%+header%>
- <h2><a id="content" name="content"><%:Upgrade MM Firmware%> - <%:Verify%></a></h2>
- <p>
- <%_ The firmware was uploaded.
- Below is the checksum and file size listed,
- compare them with the original file to ensure data integrity.<br />
- Click "Proceed" below to start the flash procedure. %>
- <% if storage > 0 and size > storage then %>
- <br /><br />
- <div class="error"><%:It appears that you try to
- flash an firmware that does not fit into the flash memory, please verify
- the firmware file! %></div>
- <% end %>
- </p>
- <fieldset class="cbi-section">
- <ul>
- <li><%:Checksum%>: <code><%=checksum%></code></li>
- <li><%:Size%>: <%
- local w = require "luci.tools.webadmin"
- write(w.byte_format(size))
- if storage > 0 then
- write(luci.i18n.translatef(
- " (%s available)",
- w.byte_format(storage)
- ))
- end
- %></li>
- </ul>
- </fieldset>
- <div class="cbi-page-actions right">
- <form style="display:inline" action="<%=REQUEST_URI%>" method="post">
- <input class="cbi-button cbi-button-reset" type="submit" value="<%:Cancel%>" />
- </form>
- <form style="display:inline" action="<%=REQUEST_URI%>" method="post">
- <input type="hidden" name="step" value="2" />
- <input class="cbi-button cbi-button-apply" type="submit" value="<%:Proceed%>" />
- </form>
- </div>
- <%+footer%>
|