libs/cbi: Add a check whether a section was recently created
[project/luci.git] / libs / cbi / luasrc / view / cbi / ucisection.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 <% self:render_children(section, scope or {}) %>
17
18 <% if self.tag_deperror[section] then -%>
19 <div class="cbi-error"><%:cbi_deperror%></div>
20 <% elseif self.tag_invalid[section] then -%>
21 <div class="cbi-error"><%:cbi_invalid_section%></div>
22 <%- elseif self.tag_error[section] then -%>
23 <div class="cbi-error"><%=self.tag_error[section]%></div>
24 <%- end %>
25
26 <% if self.optionals[section] and #self.optionals[section] > 0 or self.dynamic then %>
27 <div class="cbi-optionals">
28 <% if self.dynamic then %>
29 <input type="text" name="cbi.opt.<%=self.config%>.<%=section%>" />
30 <% else %>
31 <select name="cbi.opt.<%=self.config%>.<%=section%>">
32 <option><%:cbi_addopt%></option>
33 <% for key, val in pairs(self.optionals[section]) do -%>
34 <option id="cbi-<%=self.config.."-"..section.."-"..val.option%>" value="<%=val.option%>"><%=striptags(val.title)%></option>
35 <%- end %>
36 </select>
37 <script type="text/javascript"><% for key, val in pairs(self.optionals[section]) do %>
38 <% if #val.deps > 0 then %><% for j, d in ipairs(val.deps) do -%>
39 cbi_d_add("cbi-<%=self.config.."-"..section.."-"..val.option..d.add%>", {
40 <%-
41 for k,v in pairs(d.deps) do
42 -%>
43 <%-=string.format('"cbid.%s.%s.%s"', self.config, section, k) .. ":" .. string.format("%q", v)-%>,
44 <%-
45 end
46 -%>
47 });
48 <%- end %><% end %>
49 <% end %></script>
50 <% end %>
51 <input type="submit" class="cbi-button cbi-button-fieldadd" value="<%:add%>" />
52 </div>
53 <% end %>