summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-openvpn/luasrc/view
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-10-05 19:49:21 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-10-05 19:49:21 +0000
commit9e56b07108facd5f388d766a7a24c90fd2a1f590 (patch)
tree08b4d75da65928c293a59bdebd4ff889b7fd93dd /applications/luci-openvpn/luasrc/view
parent5adf9d57809dbe2f5db3e1851613a9070648d95c (diff)
* luci/applications: some initial openvpn work - defunct
Diffstat (limited to 'applications/luci-openvpn/luasrc/view')
-rw-r--r--applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm36
1 files changed, 36 insertions, 0 deletions
diff --git a/applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm b/applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm
new file mode 100644
index 000000000..13ef35c7b
--- /dev/null
+++ b/applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm
@@ -0,0 +1,36 @@
+<%#
+LuCI - Lua Configuration Interface
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+$Id: value.htm 3333 2008-09-16 10:08:20Z Cyrus $
+
+-%>
+
+<fieldset class="cbi-section">
+ <legend>
+ <a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn")%>"><%:openvpn_overview Overview%></a> &raquo;
+ <a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn", self.instance)%>"><%=self.instance%></a>
+ </legend>
+
+ <ul><% for _, c in ipairs(self.categories) do %>
+ <li><%=c[1]%><ul><li>
+ <% for i, s in ipairs(c[2]) do %>
+ <% if s == self.csection then %>
+ <strong><%=translate("openvpn_%s" % s, s)%></strong>
+ <% else %>
+ <a href="<%=luci.dispatcher.build_url(
+ "admin", "services", "openvpn", c[1], s, self.instance
+ )%>"><%=translate("openvpn_%s" % s, s)%></a>
+ <% end %>
+ <% if next(c[2], i) then %>|<% end %>
+ <% end %>
+ </li></ul></li>
+ <% end %></ul>
+</fieldset>