a9596441b5e4c5f7b493c19a2c9ed35c6d7d8573
[project/luci.git] / libs / cbi / luasrc / view / cbi / full_valuefooter.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
16                 <% if #self.description > 0 then -%>
17                         <% if not luci.util.instanceof( self, luci.cbi.Flag ) then -%>
18                                 <br />
19                         <%- end %>
20                         <div class="cbi-value-description">
21                                 <span class="cbi-value-helpicon"><img src="<%=resource%>/cbi/help.gif" alt="<%:help%>" /></span>
22                                 <%=self.description%>
23                         </div>
24                 <%- end %>
25         <%- if self.title and #self.title > 0 then -%>
26         </div>
27         <%- end -%>
28 </div>
29
30 <% if #self.deps > 0 then -%>
31         <script type="text/javascript" id="cbip-<%=self.config.."-"..section.."-"..self.option%>">
32                 <% for j, d in ipairs(self.deps) do -%>
33                         cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option..d.add%>", {
34                 <%-
35                         for k,v in pairs(d.deps) do
36                 -%>
37                         <%-=string.format('"cbid.%s.%s.%s"', self.config, section, k) .. ":" .. string.format("%q", v)-%>
38                         <%-if next(d.deps, k) then-%>,<%-end-%>
39                 <%-
40                         end
41                 -%>
42                         }, "cbip-<%=self.config.."-"..section.."-"..self.option%>");
43                 <%- end %>
44         </script>
45 <%- end %>