a69bd3284e12641a4f46d0725b173043ab857f63
[project/luci.git] / libs / web / luasrc / view / cbi / network_ifacelist.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 net = require "luci.model.network".init()
19
20         local iface
21         local ifaces = net:get_interfaces()
22         local value = (self:formvalue(section) or self.default)
23         local checked = { }
24
25         if value then
26                 for value in utl.imatch(value) do
27                         checked[value] = true
28                 end
29         else
30                 local n = self.network and net:get_network(self.network)
31                 if n then
32                         local i
33                         for _, i in ipairs(n:get_interfaces()) do
34                                 checked[i:name()] = true
35                         end
36                 end
37         end
38 -%>
39
40 <ul style="margin:0; list-style-type:none">
41         <% for _, iface in ipairs(ifaces) do
42              local link = iface:adminlink()
43          if not self.nobridges or not iface:is_bridge() then %>
44         <li>
45                 <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=
46                         attr("type", self.widget or "radio") ..
47                         attr("id", cbid .. "." .. iface:name()) ..
48                         attr("name", cbid) .. attr("value", iface:name()) ..
49                         ifattr(checked[iface:name()], "checked", "checked")
50                 %> /> &nbsp;
51                 <label<%=attr("for", cbid .. "." .. iface:name())%>>
52                         <% if link then -%><a href="<%=link%>"><% end -%>
53                         <img title="<%=iface:get_type_i18n()%>" style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
54                         <% if link then -%></a><% end -%>
55                         <%=iface:get_i18n()%><% local n = iface:get_network(); if n then %> (<a href="<%=n:adminlink()%>"><%=n:name()%></a>)<% end %>
56                 </label>
57         </li>
58         <% end end %>
59 </ul>
60
61 <%+cbi/valuefooter%>