* add the ability to upload ovpn files directly, incl. appropriate uci entry in openvpn config * add the ability to edit ovpn files directly ('file' mode), beside the 'basic' and 'advanced' modes for normal setups * client side checks to validate instance name & template selection, incl. online error reporting * automatically remove non-ascii characters & windows line endings from transfered ovpn file * change from after_commit to after_apply hook * remove misleading default values for Port & Protocol in Overview Signed-off-by: Dirk Brenken <dev@brenken.org>
36 lines
1.6 KiB
HTML
36 lines
1.6 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 == "file" then %>
|
|
<a href="<%=url('admin/services/openvpn/basic', self.instance)%>"><%:Switch to basic configuration%> »</a><p/>
|
|
<a href="<%=url('admin/services/openvpn/advanced', self.instance, "Service")%>"><%:Switch to advanced configuration%> »</a>
|
|
<hr />
|
|
<% elseif self.mode == "basic" then %>
|
|
<a href="<%=url('admin/services/openvpn/advanced', self.instance, "Service")%>"><%:Switch to advanced configuration%> »</a><p/>
|
|
<a href="<%=url('admin/services/openvpn/file', self.instance)%>"><%:Switch to file based configuration%> »</a>
|
|
<hr />
|
|
<% elseif self.mode == "advanced" then %>
|
|
<a href="<%=url('admin/services/openvpn/basic', self.instance)%>"><%:Switch to basic configuration%> »</a><p/>
|
|
<a href="<%=url('admin/services/openvpn/file', self.instance)%>"><%:Switch to file based configuration%> »</a>
|
|
<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>
|