libs/web: convert cbi widgets to new network model
[project/luci.git] / libs / web / 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 nwm = require "luci.model.network"
18
19 local net, iface
20 local networks = nwm:get_networks()
21 local value = self:formvalue(section)
22
23 if not value or value == "-" then
24 value = self:cfgvalue(section) or self.default
25 end
26 -%>
27
28 <ul style="margin:0; list-style-type:none; text-align:left">
29 <% for _, net in ipairs(networks) do
30 if net:name() ~= "loopback" then %>
31 <li style="padding:0.25em 0">
32 <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;
33 <label<%=attr("for", cbid .. "." .. net:name())%>>
34 &nbsp;<span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
35 <%
36 local empty = true
37 for _, iface in ipairs(net:get_interfaces()) do
38 if not iface:is_bridge() then
39 empty = false
40 %>
41 <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" />
42 <% end end %>
43 <% if empty then %><em><%:(no interfaces attached)%></em><% end %>
44 </span>
45 </label>
46 </li>
47 <% end end %>
48
49 <% if self.widget ~= "checkbox" and not self.nocreate then %>
50 <li style="padding:0.25em 0">
51 <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;
52 <div style="padding:0.5em; display:inline">
53 <label<%=attr("for", cbid .. "_new")%>><em><%:unspecified -or- create:%>&nbsp;</em></label>
54 <input style="width:6em" type="text"<%=attr("name", cbid .. ".newnet")%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" />
55 </div>
56 </li>
57 <% end %>
58 </ul>
59
60 <%+cbi/valuefooter%>