diff options
Diffstat (limited to 'src/ffluci/view')
-rw-r--r-- | src/ffluci/view/cbi/footer.htm | 2 | ||||
-rw-r--r-- | src/ffluci/view/cbi/header.htm | 2 | ||||
-rw-r--r-- | src/ffluci/view/cbi/map.htm | 8 | ||||
-rw-r--r-- | src/ffluci/view/cbi/nsection.htm | 2 | ||||
-rw-r--r-- | src/ffluci/view/cbi/tsection.htm | 22 | ||||
-rw-r--r-- | src/ffluci/view/header.htm | 3 | ||||
-rw-r--r-- | src/ffluci/view/public_index/index.htm (renamed from src/ffluci/view/index/index.htm) | 0 |
7 files changed, 16 insertions, 23 deletions
diff --git a/src/ffluci/view/cbi/footer.htm b/src/ffluci/view/cbi/footer.htm new file mode 100644 index 000000000..e8ef8fef5 --- /dev/null +++ b/src/ffluci/view/cbi/footer.htm @@ -0,0 +1,2 @@ + </form> +<%+footer%>
\ No newline at end of file diff --git a/src/ffluci/view/cbi/header.htm b/src/ffluci/view/cbi/header.htm new file mode 100644 index 000000000..bd3607f11 --- /dev/null +++ b/src/ffluci/view/cbi/header.htm @@ -0,0 +1,2 @@ +<%+header%> + <form method="post" action="<%=os.getenv("REQUEST_URI")%>"> diff --git a/src/ffluci/view/cbi/map.htm b/src/ffluci/view/cbi/map.htm index b724ffccb..e6884f104 100644 --- a/src/ffluci/view/cbi/map.htm +++ b/src/ffluci/view/cbi/map.htm @@ -1,10 +1,8 @@ - <div class="cbi-map" id="cbi-<%=self.config%>"> - <form method="post" action="<%=os.getenv("REQUEST_URI")%>"> + <div class="cbi-map" id="cbi-<%=self.config%>"> <h1><%=self.title%></h1> <div class="cbi-map-descr"><%=self.description%></div> <br /> -<% for k, node in ipairs(self.children) do node:render() end %> +<% self:render_children() %> <br /> <input type="submit" /> <input type="reset" /> - </form> - </div> + </div> diff --git a/src/ffluci/view/cbi/nsection.htm b/src/ffluci/view/cbi/nsection.htm index e002c68b0..84f893d2b 100644 --- a/src/ffluci/view/cbi/nsection.htm +++ b/src/ffluci/view/cbi/nsection.htm @@ -2,6 +2,6 @@ <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 %> +<% self:render_children() %> </div> </div> diff --git a/src/ffluci/view/cbi/tsection.htm b/src/ffluci/view/cbi/tsection.htm index b613f6271..bd19ecf59 100644 --- a/src/ffluci/view/cbi/tsection.htm +++ b/src/ffluci/view/cbi/tsection.htm @@ -1,21 +1,11 @@ -<% -local allsections = self.map:read() -local sections = {} -for k, v in pairs(allsections) do - if v[".type"] == self.sectiontype then - sections[k] = v - end -end -%> <div class="cbi-tsection" id="cbi-<%=self.config%>-<%=self.sectiontype%>"> <h2><%=self.title%></h2> <div class="cbi-tsection-descr"><%=self.description%></div> -<% for k, v in pairs(sections) do %> - <div class="cbi-tsection-node" id="cbi-<%=self.config%>-<%=k%>"> -<% for i, node in ipairs(self.children) do - node.section = k - node:render() -end %> - </div> +<% for k, v in pairs(self:ucisections()) do%> + <fieldset class="cbi-tsection-node" id="cbi-<%=self.config%>-<%=k%>"> + <% if not self.anonymous then %><legend><%=k%></legend><% end %> +<% self:render_children(k) %> + </fieldset> + <br /> <% end %> </div> diff --git a/src/ffluci/view/header.htm b/src/ffluci/view/header.htm index cef95b36c..2af577a07 100644 --- a/src/ffluci/view/header.htm +++ b/src/ffluci/view/header.htm @@ -10,6 +10,7 @@ require("ffluci.http").htmlheader() <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" type="text/css" href="<%=media%>/cascade.css" /> +<link rel="stylesheet" type="text/css" href="<%=media%>/css/<%=req.category%>_<%=req.module%>.css" /> <title>FFLuCI</title> <% if addheaders then write(addheaders) end %> </head> @@ -56,4 +57,4 @@ require("ffluci.http").htmlheader() <div>Konfiguration<ul><li>x Änderungen</li><li>Anwenden</li><li>Zurücksetzen</li></ul></div> <% end %> </div> - <div id="content"> + <div id="content">
\ No newline at end of file diff --git a/src/ffluci/view/index/index.htm b/src/ffluci/view/public_index/index.htm index a18613286..a18613286 100644 --- a/src/ffluci/view/index/index.htm +++ b/src/ffluci/view/public_index/index.htm |