summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm
blob: 6590caadc4b447a72bf2c84193b854404e9b6165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<%#
 Copyright 2008 Steven Barth <steven@midlink.org>
 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
 Licensed to the public under the Apache License 2.0.
-%>

<fieldset class="cbi-section">
	<legend>
		<a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn")%>"><%:Overview%></a> &raquo;
		<%=luci.i18n.translatef("Instance \"%s\"", self.instance)%>
	</legend>

	<% if self.mode == "basic" then %>
		<a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn", "advanced", self.instance, "Service")%>"><%:Switch to advanced configuration »%></a>
	<% else %>
		<a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn", "basic", self.instance)%>"><%:« Switch to basic configuration%></a>
		<hr style="margin:0.5em 0" />
		<%:Configuration category%>:
		<% for i, c in ipairs(self.categories) do %>
			<% if c == self.category then %>
				<strong><%=translate(c)%></strong>
			<% else %>
				<a href="<%=luci.dispatcher.build_url(
					"admin", "services", "openvpn", "advanced", self.instance, c
				)%>"><%=translate(c)%></a>
			<% end %>
			<% if next(self.categories, i) then %>|<% end %>
		<% end %>
	<% end %>
</fieldset>