diff options
author | Dirk Brenken <dev@brenken.org> | 2018-09-16 18:58:26 +0200 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2018-09-17 14:22:14 +0200 |
commit | c2656a722097a7b4004d2da9c223b347cfa1a4af (patch) | |
tree | c9606e591bcb472341e48e05a6329caa40131312 /applications/luci-app-openvpn/luasrc/view/openvpn | |
parent | 5cb6c1c698a8e4d7214ed5d18d5324df8c3faed6 (diff) |
luci-app-openvpn: remove obsolete config options
* remove obsolete config options according to
openwrt/openwrt@89b8ba9, fix for #2135
* whitespace/intendation fixes
* replace fieldset leftover with div
* fix finally recipe options transfer to regular config with "Add"
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-openvpn/luasrc/view/openvpn')
-rw-r--r-- | applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm b/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm index f22cb68c7b..8cb019b461 100644 --- a/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm +++ b/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm @@ -4,11 +4,11 @@ Licensed to the public under the Apache License 2.0. -%> -<fieldset class="cbi-section"> - <legend> +<div class="cbi-section"> + <h3> <a href="<%=url('admin/services/openvpn')%>"><%:Overview%></a> » <%=luci.i18n.translatef("Instance \"%s\"", self.instance)%> - </legend> + </h3> <% if self.mode == "basic" then %> <a href="<%=url('admin/services/openvpn/advanced', self.instance, "Service")%>"><%:Switch to advanced configuration ยป%></a> @@ -27,4 +27,4 @@ <% if next(self.categories, i) then %>|<% end %> <% end %> <% end %> -</fieldset> +</div> |