* CBI: Generalized templates
* admin > network > ifaces: Set default value for protocol allowing new sections to be created.
This commit is contained in:
parent
7e9c97808d
commit
fb2a9a328d
10 changed files with 57 additions and 96 deletions
|
@ -10,6 +10,7 @@ s:depends("proto", "dhcp")
|
|||
p = s:option(ListValue, "proto", "Protokoll")
|
||||
p:value("static", "statisch")
|
||||
p:value("dhcp", "DHCP")
|
||||
p.default = "static"
|
||||
|
||||
s:option(Value, "ifname", "Schnittstelle")
|
||||
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
<div class="cbi-value" id="cbi-<%=self.config.."-"..section.."-"..self.option%>">
|
||||
<div class="cbi-value-title left"><%=self.title%></div>
|
||||
<div class="cbi-value-field">
|
||||
<%+cbi/valueheader%>
|
||||
<input onchange="cbi_d_update(this.id)" type="checkbox" id="cbid.<%=self.config.."."..section.."."..self.option%>" name="cbid.<%=self.config.."."..section.."."..self.option%>"<% if self:cfgvalue(section) == self.enabled then %> checked="checked"<% end %> value="1" />
|
||||
<div class="cbi-value-description inline"><%=self.description%></div>
|
||||
</div>
|
||||
</div>
|
||||
<% if #self.deps > 0 then %><script type="text/javascript">
|
||||
<% for j, d in ipairs(self.deps) do %>cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option%>", "cbid.<%=self.config.."."..section.."."..d.field%>", "<%=d.value%>");
|
||||
<% end %>
|
||||
</script><% end %>
|
||||
<%+cbi/valuefooter%>
|
|
@ -1,6 +1,4 @@
|
|||
<div class="cbi-value" id="cbi-<%=self.config.."-"..section.."-"..self.option%>">
|
||||
<div class="cbi-value-title left"><%=self.title%></div>
|
||||
<div class="cbi-value-field">
|
||||
<%+cbi/valueheader%>
|
||||
<% if self.widget == "select" then %>
|
||||
<select onchange="cbi_d_update(this.id)" id="cbid.<%=self.config.."."..section.."."..self.option%>" name="cbid.<%=self.config.."."..section.."."..self.option%>"<% if self.size then %> size="<%=self.size%>"<% end %>>
|
||||
<%for i, key in pairs(self.keylist) do%>
|
||||
|
@ -15,10 +13,4 @@
|
|||
<% if c == self.size then c = 0 %><br />
|
||||
<% end end %>
|
||||
<% end %>
|
||||
<div class="cbi-value-description inline"><%=self.description%></div>
|
||||
</div>
|
||||
</div>
|
||||
<% if #self.deps > 0 then %><script type="text/javascript">
|
||||
<% for j, d in ipairs(self.deps) do %>cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option%>", "cbid.<%=self.config.."."..section.."."..d.field%>", "<%=d.value%>");
|
||||
<% end %>
|
||||
</script><% end %>
|
||||
<%+cbi/valuefooter%>
|
|
@ -1,9 +1,7 @@
|
|||
<%
|
||||
local v = self:valuelist(section)
|
||||
%>
|
||||
<div class="cbi-value" id="cbi-<%=self.config.."-"..section.."-"..self.option%>">
|
||||
<div class="cbi-value-title left"><%=self.title%></div>
|
||||
<div class="cbi-value-field">
|
||||
<%+cbi/valueheader%>
|
||||
<% if self.widget == "select" then %>
|
||||
<select multiple="multiple" name="cbid.<%=self.config.."."..section.."."..self.option%>[]"<% if self.size then %> size="<%=self.size%>"<% end %>>
|
||||
<%for i, key in pairs(self.keylist) do %>
|
||||
|
@ -18,10 +16,4 @@ local v = self:valuelist(section)
|
|||
<% if c == self.size then c = 0 %><br />
|
||||
<% end end %>
|
||||
<% end %>
|
||||
<div class="cbi-value-description inline"><%=self.description%></div>
|
||||
</div>
|
||||
</div>
|
||||
<% if #self.deps > 0 then %><script type="text/javascript">
|
||||
<% for j, d in ipairs(self.deps) do %>cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option%>", "cbid.<%=self.config.."."..section.."."..d.field%>", "<%=d.value%>");
|
||||
<% end %>
|
||||
</script><% end %>
|
||||
<%+cbi/valuefooter%>
|
|
@ -1,32 +1,12 @@
|
|||
<% if self:cfgvalue(self.section) then %>
|
||||
<div class="cbi-section" id="cbi-<%=self.config%>-<%=self.section%>">
|
||||
<% if self:cfgvalue(self.section) then
|
||||
section = self.section %>
|
||||
<div class="cbi-section" id="cbi-<%=self.config%>-<%=section%>">
|
||||
<h2><%=self.title%></h2>
|
||||
<div class="cbi-section-descr"><%=self.description%></div>
|
||||
<% if self.addremove then %><div class="cbi-section-remove">
|
||||
<input type="submit" name="cbi.rns.<%=self.config%>.<%=self.section%>" value="<%:cbi_del Eintrag entfernen%>" />
|
||||
<input type="submit" name="cbi.rns.<%=self.config%>.<%=section%>" value="<%:cbi_del Eintrag entfernen%>" />
|
||||
</div><% end %>
|
||||
<fieldset class="cbi-section-node">
|
||||
<% self:render_children(self.section) %>
|
||||
<% if #self.optionals[self.section] > 0 or self.dynamic then %>
|
||||
<div class="cbi-optionals">
|
||||
<input type="submit" value="<%:cbi_addopt Feld hinzufügen%>" />
|
||||
<% if self.dynamic then %>
|
||||
<input type="text" name="cbi.opt.<%=self.config%>.<%=self.section%>" />
|
||||
<% else %>
|
||||
<select name="cbi.opt.<%=self.config%>.<%=self.section%>">
|
||||
<option><%:cbi_selopt *** Zusätzliche Parameter ***%></option>
|
||||
<% for key, val in pairs(self.optionals[self.section]) do %>
|
||||
<option id="cbi-<%=self.config.."-"..self.section.."-"..val.option%>" value="<%=val.option%>"><%=val.title%></option>
|
||||
<% end %>
|
||||
</select>
|
||||
<script type="text/javascript"><% for key, val in pairs(self.optionals[self.section]) do %>
|
||||
<% if #val.deps > 0 then %><% for j, d in ipairs(val.deps) do %>cbi_d_add("cbi-<%=self.config.."-"..self.section.."-"..val.option%>", "cbid.<%=self.config.."."..self.section.."."..d.field%>", "<%=d.value%>");
|
||||
<% end %><% end %>
|
||||
<% end %></script>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
</fieldset>
|
||||
<%+cbi/ucisection%>
|
||||
</div>
|
||||
<% elseif self.addremove then %>
|
||||
<div class="cbi-section" id="cbi-<%=self.config%>-<%=self.section%>">
|
||||
|
|
|
@ -6,37 +6,16 @@
|
|||
<input type="submit" name="cbi.rts.<%=self.config%>.<%=k%>" value="<%:cbi_del Eintrag entfernen%>" />
|
||||
</div><% end %>
|
||||
<% if not self.anonymous then %><h3><%=k%></h3><% end %>
|
||||
<fieldset class="cbi-section-node" id="cbi-<%=self.config%>-<%=k%>">
|
||||
<% self:render_children(k) %>
|
||||
<% if #self.optionals[k] > 0 or self.dynamic then %>
|
||||
<div class="cbi-optionals">
|
||||
<% if self.dynamic then %>
|
||||
<input type="text" name="cbi.opt.<%=self.config%>.<%=k%>" />
|
||||
<% else %>
|
||||
<select name="cbi.opt.<%=self.config%>.<%=k%>">
|
||||
<option><%:cbi_addopt -- Feld --%></option>
|
||||
<% for key, val in pairs(self.optionals[k]) do %>
|
||||
<option id="cbi-<%=self.config.."-"..k.."-"..val.option%>" value="<%=val.option%>"><%=val.title%></option>
|
||||
<% end %>
|
||||
</select>
|
||||
<script type="text/javascript"><% for key, val in pairs(self.optionals[k]) do %>
|
||||
<% if #val.deps > 0 then %><% for j, d in ipairs(val.deps) do %>cbi_d_add("cbi-<%=self.config.."-"..k.."-"..val.option%>", "cbid.<%=self.config.."."..k.."."..d.field%>", "<%=d.value%>");
|
||||
<% end %><% end %>
|
||||
<% end %></script>
|
||||
<% end %>
|
||||
<input type="submit" value="<%:add hinzufügen%>" />
|
||||
</div>
|
||||
<% end %>
|
||||
</fieldset>
|
||||
<br />
|
||||
<% section = k %>
|
||||
<%+cbi/ucisection%>
|
||||
<% end %>
|
||||
<% if self.addremove then %>
|
||||
<div class="cbi-section-create">
|
||||
<% if self.anonymous then %>
|
||||
<input type="submit" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" value="<%:cbi_add Eintrag hinzufügen%>" />
|
||||
<% else %><input type="text" class="cbi-section-create-name" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" />
|
||||
<input type="submit" value="<%:cbi_add Eintrag hinzufügen%>" />
|
||||
<% end %><% if self.err_invalid then %><div class="cbi-error"><%:cbi_invalid Fehler: Ungültige Eingabe%></div><% end %>
|
||||
</div>
|
||||
<div class="cbi-section-create">
|
||||
<% if self.anonymous then %>
|
||||
<input type="submit" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" value="<%:cbi_add Eintrag hinzufügen%>" />
|
||||
<% else %><input type="text" class="cbi-section-create-name" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>" />
|
||||
<input type="submit" value="<%:cbi_add Eintrag hinzufügen%>" />
|
||||
<% end %><% if self.err_invalid then %><div class="cbi-error"><%:cbi_invalid Fehler: Ungültige Eingabe%></div><% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
|
|
23
src/ffluci/view/cbi/ucisection.htm
Normal file
23
src/ffluci/view/cbi/ucisection.htm
Normal file
|
@ -0,0 +1,23 @@
|
|||
<fieldset class="cbi-section-node" id="cbi-<%=self.config%>-<%=section%>">
|
||||
<% self:render_children(section) %>
|
||||
<% if #self.optionals[section] > 0 or self.dynamic then %>
|
||||
<div class="cbi-optionals">
|
||||
<% if self.dynamic then %>
|
||||
<input type="text" name="cbi.opt.<%=self.config%>.<%=section%>" />
|
||||
<% else %>
|
||||
<select name="cbi.opt.<%=self.config%>.<%=section%>">
|
||||
<option><%:cbi_addopt -- Feld --%></option>
|
||||
<% for key, val in pairs(self.optionals[section]) do %>
|
||||
<option id="cbi-<%=self.config.."-"..section.."-"..val.option%>" value="<%=val.option%>"><%=val.title%></option>
|
||||
<% end %>
|
||||
</select>
|
||||
<script type="text/javascript"><% for key, val in pairs(self.optionals[section]) do %>
|
||||
<% if #val.deps > 0 then %><% for j, d in ipairs(val.deps) do %>cbi_d_add("cbi-<%=self.config.."-"..section.."-"..val.option%>", "cbid.<%=self.config.."."..section.."."..d.field%>", "<%=d.value%>");
|
||||
<% end %><% end %>
|
||||
<% end %></script>
|
||||
<% end %>
|
||||
<input type="submit" value="<%:add hinzufügen%>" />
|
||||
</div>
|
||||
<% end %>
|
||||
</fieldset>
|
||||
<br />
|
|
@ -1,12 +1,3 @@
|
|||
<div class="cbi-value clear" id="cbi-<%=self.config.."-"..section.."-"..self.option%>">
|
||||
<div class="cbi-value-title left"><%=self.title%></div>
|
||||
<div class="cbi-value-field">
|
||||
<%+cbi/valueheader%>
|
||||
<input type="text" onchange="cbi_d_update(this.id)" <% if self.size then %>size="<%=self.size%>" <% end %><% if self.maxlength then %>maxlength="<%=self.maxlength%>" <% end %>name="cbid.<%=self.config.."."..section.."."..self.option%>" value="<%=(self:cfgvalue(section) or "")%>" />
|
||||
<div class="cbi-value-description inline"><%=self.description%></div>
|
||||
</div>
|
||||
<% if self.tag_invalid[section] then %><div class="cbi-error"><%:cbi_invalid Fehler: Ungültige Eingabe%></div><% end %>
|
||||
</div>
|
||||
<% if #self.deps > 0 then %><script type="text/javascript">
|
||||
<% for j, d in ipairs(self.deps) do %>cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option%>", "cbid.<%=self.config.."."..section.."."..d.field%>", "<%=d.value%>");
|
||||
<% end %>
|
||||
</script><% end %>
|
||||
<%+cbi/valuefooter%>
|
||||
|
|
8
src/ffluci/view/cbi/valuefooter.htm
Normal file
8
src/ffluci/view/cbi/valuefooter.htm
Normal file
|
@ -0,0 +1,8 @@
|
|||
<div class="cbi-value-description inline"><%=self.description%></div>
|
||||
</div>
|
||||
<% if self.tag_invalid[section] then %><div class="cbi-error"><%:cbi_invalid Fehler: Ungültige Eingabe%></div><% end %>
|
||||
</div>
|
||||
<% if #self.deps > 0 then %><script type="text/javascript">
|
||||
<% for j, d in ipairs(self.deps) do %>cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option%>", "cbid.<%=self.config.."."..section.."."..d.field%>", "<%=d.value%>");
|
||||
<% end %>
|
||||
</script><% end %>
|
3
src/ffluci/view/cbi/valueheader.htm
Normal file
3
src/ffluci/view/cbi/valueheader.htm
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div class="cbi-value clear" id="cbi-<%=self.config.."-"..section.."-"..self.option%>">
|
||||
<div class="cbi-value-title left"><%=self.title%></div>
|
||||
<div class="cbi-value-field">
|
Loading…
Reference in a new issue