2008-08-15 09:22:45 +00:00
|
|
|
<fieldset class="cbi-section">
|
2008-08-18 00:38:18 +00:00
|
|
|
<% if self.title and #self.title > 0 then -%>
|
|
|
|
<legend><%=self.title%></legend>
|
|
|
|
<%- end %>
|
2008-09-16 15:51:11 +00:00
|
|
|
<div class="cbi-section-node" id="cbi-<%=self.config%>-<%=tostring(self):sub(8)%>">
|
2008-08-15 09:22:45 +00:00
|
|
|
<% self:render_children(1, scope or {}) %>
|
|
|
|
</div>
|
|
|
|
<br />
|
2009-11-08 02:30:35 +00:00
|
|
|
</fieldset>
|
|
|
|
<%-
|
|
|
|
if type(self.hidden) == "table" then
|
|
|
|
for k, v in pairs(self.hidden) do
|
|
|
|
-%>
|
|
|
|
<input type="hidden" id="<%=k%>" name="<%=k%>" value="<%=pcdata(v)%>" />
|
|
|
|
<%-
|
|
|
|
end
|
|
|
|
end
|
|
|
|
%>
|