diff options
author | Steven Barth <steven@midlink.org> | 2008-04-07 21:01:39 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-07 21:01:39 +0000 |
commit | f341dfe91a766003a9333725e88823e2866fb3c8 (patch) | |
tree | 3596ea31d97ff8c730c5805f2f4d16641b6456cd /src/ffluci/view/admin_system/upgrade.htm | |
parent | 9de2f0d5918a0fb2b6d73fb8bcf9db1c9f9cc745 (diff) |
* Added configuration pages for Dropbear, HTTPd, Mount Points
* Reorganized menu structure
* Prepare firmware upgrade mechanism
Diffstat (limited to 'src/ffluci/view/admin_system/upgrade.htm')
-rw-r--r-- | src/ffluci/view/admin_system/upgrade.htm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/ffluci/view/admin_system/upgrade.htm b/src/ffluci/view/admin_system/upgrade.htm new file mode 100644 index 000000000..e7a8f2f68 --- /dev/null +++ b/src/ffluci/view/admin_system/upgrade.htm @@ -0,0 +1,26 @@ +<%+header%> +<h1><%:system System%></h1> +<h2><%:upgrade Upgrade%></h2> +<br /> +<% if sysupgrade then %> +<form method="post" action="<%=controller%>-upload/admin/system/upgrade" enctype="multipart/form-data"> + <fieldset class="cbi-section-node"> + <div class="cbi-value clear"> + <div class="cbi-value-title left"><%:fwimage Firmwareimage%></div> + <div class="cbi-value-field"><input type="file" size="30" name="image" /></div> + </div> + <br /> + <div class="cbi-value clear"> + <input type="checkbox" name="keepcfg" value="1" checked="checked" /> + <span class="bold"><%:keepcfg Konfigurationsdateien übernehmen%></span> + </div> + <br /> + <div> + <input type="submit" value="<%:fwupgrade Firmware aktualisieren%>" /> + </div> + </fieldset> +</form> +<% else %> +<div class="error"><%:notimplemented Diese Funktion ist leider (noch) nicht eingebaut.%></div> +<% end %> +<%+footer%>
\ No newline at end of file |