* add 'auth-user-pass' edit section in file mode (see screenshot) * add port & protocol detection in file mode (see screenshot) * don't mix file & normal edit modes any longer * add CC compatibility fix (for turris devices) * fix/refine JS instance name filter * remove needless CSS rules * unlink ovpn/auth files on section removal * commit changes instantly (Add/Upload/Delete) Signed-off-by: Dirk Brenken <dev@brenken.org>
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<%#
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
|
|
Licensed to the public under the Apache License 2.0.
|
|
-%>
|
|
|
|
<%+openvpn/ovpn_css%>
|
|
|
|
<div class="cbi-section">
|
|
<h3>
|
|
<a href="<%=url('admin/services/openvpn')%>"><%:Overview%></a> »
|
|
<%=luci.i18n.translatef("Instance \"%s\"", self.instance)%>
|
|
</h3>
|
|
<% if self.mode == "basic" then %>
|
|
<a href="<%=url('admin/services/openvpn/advanced', self.instance, "Service")%>"><%:Switch to advanced configuration%> »</a><p/>
|
|
<hr />
|
|
<% elseif self.mode == "advanced" then %>
|
|
<a href="<%=url('admin/services/openvpn/basic', self.instance)%>"><%:Switch to basic configuration%> »</a><p/>
|
|
<hr />
|
|
<%: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 %>
|
|
</div>
|