libs/cbi: fixes for widget templates
[project/luci.git] / libs / cbi / luasrc / view / cbi / network_netlist.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2009 Jo-Philipp Wich <xm@subsignal.org>
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9         http://www.apache.org/licenses/LICENSE-2.0
10
11 $Id$
12
13 -%>
14 <%+cbi/valueheader%>
15
16 <%-
17         local utl = require "luci.util"
18         local nwm = require "luci.model.network"
19
20         local net, iface
21         local networks = nwm:get_networks()
22         local value = self:formvalue(section)
23
24         if not value or value == "-" then
25                 value = self:cfgvalue(section) or self.default
26         end
27 -%>
28
29 <ul style="margin:0; list-style-type:none; text-align:left">
30         <% for _, net in utl.spairs(networks, function(a,b) return (networks[a]:name() < networks[b]:name()) end) do
31                if net:name() ~= "loopback" then %>
32         <li style="padding:0.25em 0">
33                 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "." .. net:name()) .. attr("name", cbid) .. attr("value", net:name()) .. ifattr(value == net:name(), "checked", "checked")%> /> &nbsp;
34                 <label<%=attr("for", cbid .. "." .. net:name())%>>
35                         &nbsp;<span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
36                                 <%
37                                         local empty = true
38                                         for _, iface in ipairs(net:get_interfaces()) do
39                                                 if not iface:is_bridge() then
40                                                         empty = false
41                                  %>
42                                         <img<%=attr("title", iface:get_i18n())%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
43                                 <% end end %>
44                                 <% if empty then %><em><%:a_s_ipt_zone_empty (no interfaces attached)%></em><% end %>
45                         </span>
46                 </label>
47         </li>
48         <% end end %>
49
50         <% if self.widget ~= "checkbox" and not self.nocreate then %>
51         <li style="padding:0.25em 0">
52                 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%=attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not value, "checked", "checked")%> /> &nbsp;
53                 <div style="padding:0.5em; display:inline">
54                         <label<%=attr("for", cbid .. "_new")%>><em><%:a_s_ipt_zone_unspec_create unspecified -or- create:%>&nbsp;</em></label>
55                         <input style="width:6em" type="text"<%=attr("name", cbid .. ".newnet")%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" />
56                 </div>
57         </li>
58         <% end %>
59 </ul>
60
61 <%+cbi/valuefooter%>