* luci/libs/cbi: implement addremove_template
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 10 Oct 2008 11:47:32 +0000 (11:47 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 10 Oct 2008 11:47:32 +0000 (11:47 +0000)
libs/cbi/luasrc/view/cbi/nsection.htm
libs/cbi/luasrc/view/cbi/tblsection.htm
libs/cbi/luasrc/view/cbi/tsection.htm

index 156137e..d766464 100644 (file)
@@ -32,6 +32,7 @@ $Id$
                <br />
        </fieldset>
 <% elseif self.addremove then %>
                <br />
        </fieldset>
 <% elseif self.addremove then %>
+       <% if self.template_addremove then include(self.template_addremove) else -%>
        <fieldset class="cbi-section" id="cbi-<%=self.config%>-<%=self.section%>">
                <% if self.title and #self.title > 0 then -%>
                        <legend><%=self.title%></legend>
        <fieldset class="cbi-section" id="cbi-<%=self.config%>-<%=self.section%>">
                <% if self.title and #self.title > 0 then -%>
                        <legend><%=self.title%></legend>
@@ -39,5 +40,6 @@ $Id$
                <div class="cbi-section-descr"><%=self.description%></div>
                <input type="submit" class="cbi-button-add" name="cbi.cns.<%=self.config%>.<%=self.section%>" value="<%:cbi_add%>" />
        </fieldset>
                <div class="cbi-section-descr"><%=self.description%></div>
                <input type="submit" class="cbi-button-add" name="cbi.cns.<%=self.config%>.<%=self.section%>" value="<%:cbi_add%>" />
        </fieldset>
+       <%- end %>
 <% end %>
 <!-- /nsection -->
 <% end %>
 <!-- /nsection -->
index b0da081..af62c53 100644 (file)
@@ -107,18 +107,20 @@ end
                <% end %>
 
                <%- if self.addremove then -%>
                <% end %>
 
                <%- if self.addremove then -%>
-               <div class="cbi-section-create">
-                       <% if self.anonymous then %>
-                               <input class="cbi-button cbi-button-add" type="submit" value="<%:cbi_add%>" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" title="<%:cbi_add%>" />
-                       <% else %>
-                               <% if self.invalid_cts then -%><div class="cbi-section-error"><% end %>
-                               <input type="text" class="cbi-section-create-name" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" />
-                               <input class="cbi-button cbi-button-add" type="submit" value="<%:cbi_add%>" title="<%:cbi_add%>" />
-                               <% if self.invalid_cts then -%>
-                                       <br /><%:cbi_invalid%></div>
-                               <%- end %>
-                       <% end %>
-               </div>
+                       <% if self.template_addremove then include(self.template_addremove) else -%>
+                       <div class="cbi-section-create">
+                               <% if self.anonymous then %>
+                                       <input class="cbi-button cbi-button-add" type="submit" value="<%:cbi_add%>" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" title="<%:cbi_add%>" />
+                               <% else %>
+                                       <% if self.invalid_cts then -%><div class="cbi-section-error"><% end %>
+                                       <input type="text" class="cbi-section-create-name" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" />
+                                       <input class="cbi-button cbi-button-add" type="submit" value="<%:cbi_add%>" title="<%:cbi_add%>" />
+                                       <% if self.invalid_cts then -%>
+                                               <br /><%:cbi_invalid%></div>
+                                       <%- end %>
+                               <% end %>
+                       </div>
+                       <%- end %>
                <%- end -%>
        </div>
 </fieldset>
                <%- end -%>
        </div>
 </fieldset>
index 70c44aa..db723f9 100644 (file)
@@ -41,6 +41,7 @@ $Id$
        <%- end %>
 
        <% if self.addremove then -%>
        <%- end %>
 
        <% if self.addremove then -%>
+               <% if self.template_addremove then include(self.template_addremove) else -%>
                <div class="cbi-section-create">
                        <% if self.anonymous then -%>
                                <input type="submit" class="cbi-button cbi-button-add" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" value="<%:cbi_add%>" />
                <div class="cbi-section-create">
                        <% if self.anonymous then -%>
                                <input type="submit" class="cbi-button cbi-button-add" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" value="<%:cbi_add%>" />
@@ -53,5 +54,6 @@ $Id$
                                <%- end %>
                        <%- end %>
                </div>
                                <%- end %>
                        <%- end %>
                </div>
+               <%- end %>
        <%- end %>
 </fieldset>
        <%- end %>
 </fieldset>