luci-0.8: add missing upload field
This commit is contained in:
parent
4e8472ebbb
commit
e1224f7bd0
1 changed files with 28 additions and 0 deletions
28
libs/cbi/luasrc/view/cbi/upload.htm
Normal file
28
libs/cbi/luasrc/view/cbi/upload.htm
Normal file
|
@ -0,0 +1,28 @@
|
|||
<%#
|
||||
LuCI - Lua Configuration Interface
|
||||
Copyright 2008 Steven Barth <steven@midlink.org>
|
||||
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
||||
|
||||
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: upload.htm 3530 2008-10-07 15:41:15Z jow $
|
||||
|
||||
-%>
|
||||
|
||||
<%
|
||||
local t = require("luci.tools.webadmin")
|
||||
local v = self:cfgvalue(section)
|
||||
-%>
|
||||
<%+cbi/valueheader%>
|
||||
<% if v then %>
|
||||
<%:cbi_upload Uploaded File%> (<%=t.byte_format(luci.fs.stat(v).size or 0)%>)
|
||||
<input type="hidden"<%= attr("value", v) .. attr("name", cbid) .. attr("id", cbid) %> />
|
||||
<input class="cbi-input-image" type="image" value="<%:cbi_replace%>" name="cbi.rlf.<%=section .. "." .. self.option%>" alt="<%:cbi_replace%>" title="<%:cbi_replace%>" src="<%=resource%>/cbi/reload.gif" />
|
||||
<% else %>
|
||||
<input class="cbi-input-file" type="file"<%= attr("name", cbid) .. attr("id", cbid) %> />
|
||||
<% end %>
|
||||
<%+cbi/valuefooter%>
|
Loading…
Reference in a new issue