diff options
author | Steven Barth <steven@midlink.org> | 2008-03-28 22:55:27 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-03-28 22:55:27 +0000 |
commit | bd32a8aac5de9beb321b3cdfe180a8798c5a3379 (patch) | |
tree | a0b5e2926066e23c7356122a8afeb0ed0ef0e505 /src/ffluci/view | |
parent | fb2a9a328d619ecf329e64cb500ff1385e3f8290 (diff) |
* CBI: improvements, bug fixes
* admin: Introduced wifi, olsr, password pages
Diffstat (limited to 'src/ffluci/view')
-rw-r--r-- | src/ffluci/view/admin_system/index.htm | 2 | ||||
-rw-r--r-- | src/ffluci/view/admin_system/passwd.htm | 15 | ||||
-rw-r--r-- | src/ffluci/view/admin_wifi/index.htm | 2 | ||||
-rw-r--r-- | src/ffluci/view/cbi/dvalue.htm | 12 | ||||
-rw-r--r-- | src/ffluci/view/cbi/tsection.htm | 7 | ||||
-rw-r--r-- | src/ffluci/view/cbi/value.htm | 2 |
6 files changed, 36 insertions, 4 deletions
diff --git a/src/ffluci/view/admin_system/index.htm b/src/ffluci/view/admin_system/index.htm new file mode 100644 index 000000000..75aa02658 --- /dev/null +++ b/src/ffluci/view/admin_system/index.htm @@ -0,0 +1,2 @@ +<%+header%> +<%+footer%>
\ No newline at end of file diff --git a/src/ffluci/view/admin_system/passwd.htm b/src/ffluci/view/admin_system/passwd.htm new file mode 100644 index 000000000..3458fef92 --- /dev/null +++ b/src/ffluci/view/admin_system/passwd.htm @@ -0,0 +1,15 @@ +<%+header%> +<h1><%:system System%></h1> +<h2><%:changepw Passwort ändern%></h2> +<div><br /> +<% if msg then %> + <code><%=msg%></code> +<% else %> + <form method="post" action="<%=controller%>/admin/system/passwd"> + <input type="password" name="pwd1" /> <%:password Passwort%><br /> + <input type="password" name="pwd2" /> <%:confirmation Bestätigung%><br /> + <input type="submit" value="<%:save Speichern%>" /> + </form> +<% end %> +</div> +<%+footer%>
\ No newline at end of file diff --git a/src/ffluci/view/admin_wifi/index.htm b/src/ffluci/view/admin_wifi/index.htm new file mode 100644 index 000000000..75aa02658 --- /dev/null +++ b/src/ffluci/view/admin_wifi/index.htm @@ -0,0 +1,2 @@ +<%+header%> +<%+footer%>
\ No newline at end of file diff --git a/src/ffluci/view/cbi/dvalue.htm b/src/ffluci/view/cbi/dvalue.htm new file mode 100644 index 000000000..178f2e16a --- /dev/null +++ b/src/ffluci/view/cbi/dvalue.htm @@ -0,0 +1,12 @@ +<%+cbi/valueheader%> +<% if self.value then + if type(self.value) == "function" then %> + <%=self:value(section)%> +<% else %> + <%=self.value%> +<% end +else %> + <%=(self:cfgvalue(section) or "")%> +<% end %> + +<%+cbi/valuefooter%> diff --git a/src/ffluci/view/cbi/tsection.htm b/src/ffluci/view/cbi/tsection.htm index 012ae063a..8da0b4a1d 100644 --- a/src/ffluci/view/cbi/tsection.htm +++ b/src/ffluci/view/cbi/tsection.htm @@ -12,9 +12,10 @@ <% 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%>" /> + <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 %> diff --git a/src/ffluci/view/cbi/value.htm b/src/ffluci/view/cbi/value.htm index b994790d2..61033a0f5 100644 --- a/src/ffluci/view/cbi/value.htm +++ b/src/ffluci/view/cbi/value.htm @@ -1,3 +1,3 @@ <%+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 "")%>" /> + <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%>" id="cbid.<%=self.config.."."..section.."."..self.option%>" value="<%=(self:cfgvalue(section) or "")%>" /> <%+cbi/valuefooter%> |