diff options
author | Steven Barth <steven@midlink.org> | 2008-03-21 19:30:53 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-03-21 19:30:53 +0000 |
commit | c8426cfa3cce952dde8cdf2eb058d0c2fae4986d (patch) | |
tree | d54f94efba36dd8e47cf0dab73a2194365bf734a /src/ffluci/view/cbi/nsection.htm | |
parent | 6e0df95e270dc0ee4c5d10e1d6ac2550f78ff54f (diff) |
* ffluci.cbi: updates
* ffluci.template: fixed a bug where different template scopes were not separated correctly
* Added ffluci.dispatcher.cbi and ffluci.dispatcher.dynamic
Diffstat (limited to 'src/ffluci/view/cbi/nsection.htm')
-rw-r--r-- | src/ffluci/view/cbi/nsection.htm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/ffluci/view/cbi/nsection.htm b/src/ffluci/view/cbi/nsection.htm index 5badeca562..e002c68b09 100644 --- a/src/ffluci/view/cbi/nsection.htm +++ b/src/ffluci/view/cbi/nsection.htm @@ -1,5 +1,7 @@ -<div class="cbi-nsection" id="cbi-<%=self.config%>-<%=self.sectiontype%>-<%=self.section%>"> -<h2><%=self.title%></h2> -<div class="cbi-nsection-descr"><%=self.description%></div> + <div class="cbi-nsection" id="cbi-<%=self.config%>-<%=self.section%>"> + <h2><%=self.title%></h2> + <div class="cbi-nsection-descr"><%=self.description%></div> + <div class="cbi-nsection-options"> <% for k, node in ipairs(self.children) do node:render() end %> -</div> + </div> + </div> |