* luci/libs/cbi: fix possible "Error in template cbi/full_valuefooter: ?:0: attempt...
[project/luci.git] / libs / cbi / luasrc / view / cbi / nsection.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:cfgvalue(self.section) then section = self.section %>
17         <fieldset class="cbi-section" id="cbi-<%=self.config%>-<%=section%>">
18                 <% if self.title and #self.title > 0 then -%>
19                         <legend><%=self.title%></legend>
20                 <%- end %>
21                 <% if self.description and #self.description > 0 then -%>
22                         <div class="cbi-section-descr"><%=self.description%></div>
23                 <%- end %>
24                 <% if self.addremove then -%>
25                         <div class="cbi-section-remove right">
26                                 <input type="submit" name="cbi.rns.<%=self.config%>.<%=section%>" value="<%:cbi_del%>" />
27                         </div>
28                 <%- end %>
29                 <div class="cbi-section-node" id="cbi-<%=self.config%>-<%=section%>">
30                         <%+cbi/ucisection%>
31                 </div>
32                 <br />
33         </fieldset>
34 <% elseif self.addremove then %>
35         <% if self.template_addremove then include(self.template_addremove) else -%>
36         <fieldset class="cbi-section" id="cbi-<%=self.config%>-<%=self.section%>">
37                 <% if self.title and #self.title > 0 then -%>
38                         <legend><%=self.title%></legend>
39                 <%- end %>
40                 <div class="cbi-section-descr"><%=self.description%></div>
41                 <input type="submit" class="cbi-button-add" name="cbi.cns.<%=self.config%>.<%=self.section%>" value="<%:cbi_add%>" />
42         </fieldset>
43         <%- end %>
44 <% end %>
45 <!-- /nsection -->