Added copyright-tags to templates
[project/luci.git] / libs / cbi / luasrc / view / cbi / lvalue.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2008 Steven Barth <steven@midlink.org>
4 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 -%>
15 <%+cbi/valueheader%>
16 <% if self.widget == "select" then %>
17                                                                 <select onchange="cbi_d_update(this.id)" id="cbid.<%=self.config.."."..section.."."..self.option%>" name="cbid.<%=self.config.."."..section.."."..self.option%>"<% if self.size then %> size="<%=self.size%>"<% end %>>
18 <%for i, key in pairs(self.keylist) do%>
19                                                                         <option<% if self:cfgvalue(section) == key then %> selected="selected"<% end %> value="<%=key%>"><%=self.vallist[i]%></option>
20 <% end %>
21                                                                 </select>
22 <% elseif self.widget == "radio" then
23         local c = 0;
24         for i, key in pairs(self.keylist) do
25         c = c + 1%>
26                                                                 <input type="radio" id="cbid.<%=self.config.."."..section.."."..self.option%>" name="cbid.<%=self.config.."."..section.."."..self.option%>"<% if self:cfgvalue(section) == key then %> checked="checked"<% end %> value="<%=key%>" />
27                                                                 <label for="cbid.<%=self.config.."."..section.."."..self.option%>"><%=self.vallist[i]%></label><br />
28 <% if c == self.size then c = 0 %><br />
29 <% end end %>
30 <% end %>
31 <%+cbi/valuefooter%>