luci-app-vpn-policy-routing: bugfix: template layout on theme-openwrt-2020
Signed-off-by: Stan Grishin <stangri@melmac.net>
This commit is contained in:
parent
988a896e0f
commit
86eb91d2f4
5 changed files with 15 additions and 9 deletions
|
@ -132,7 +132,7 @@ m = Map("vpn-policy-routing", translate("VPN and WAN Policy-Based Routing"))
|
|||
|
||||
h = m:section(NamedSection, "config", packageName, translatef("Service Status [%s %s]", packageName, packageVersion))
|
||||
status = h:option(DummyValue, "_dummy", translate("Service Status"))
|
||||
status.template = "vpn-policy-routing/status-service"
|
||||
status.template = "vpn-policy-routing/status"
|
||||
status.value = statusText
|
||||
if serviceRunning and serviceGateways and serviceGateways ~= "" then
|
||||
gateways = h:option(DummyValue, "_dummy", translate("Service Gateways"))
|
||||
|
@ -150,7 +150,7 @@ if serviceWarnings and serviceWarnings ~= "" then
|
|||
warnings.value = serviceWarnings
|
||||
end
|
||||
if packageVersion ~= "" then
|
||||
buttons = h:option(DummyValue, "_dummy")
|
||||
buttons = h:option(DummyValue, "_dummy", translate("Service Control"))
|
||||
buttons.template = packageName .. "/buttons"
|
||||
end
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
end
|
||||
-%>
|
||||
|
||||
<div class="cbi-value"><label class="cbi-value-title">Service Control</label>
|
||||
<%+cbi/valueheader%>
|
||||
<div class="cbi-value-field">
|
||||
<input type="button" class="btn cbi-button cbi-button-apply" id="btn_start" name="start" value="<%:Start%>"
|
||||
onclick="button_action(this)" />
|
||||
|
@ -60,7 +60,7 @@
|
|||
onclick="button_action(this)" />
|
||||
<span id="btn_disable_spinner" class="btn_spinner"></span>
|
||||
</div>
|
||||
</div>
|
||||
<%+cbi/valuefooter%>
|
||||
|
||||
<%-if not btn_start_status then%>
|
||||
<script type="text/javascript">document.getElementById("btn_start").disabled = true;</script>
|
||||
|
|
|
@ -5,10 +5,10 @@ This is free software, licensed under the Apache License, Version 2.0
|
|||
|
||||
<%+cbi/valueheader%>
|
||||
|
||||
<textarea rows="<%=select(2, self:cfgvalue(section):gsub('\n', '\n'))%>"
|
||||
style="outline:none;border:none;box-shadow:none;background:transparent;font-weight:bold;line-height:20px;width:50em;padding:none;margin:6px;resize:none;overflow:hidden;"
|
||||
disabled="disabled"><%=self:cfgvalue(section):gsub('\n', '\n')%>
|
||||
</textarea>
|
||||
<div style="font-weight:bold;">
|
||||
<%=self:cfgvalue(section):gsub('\n', '<br />' )%>
|
||||
</div>
|
||||
<br />
|
||||
|
||||
<div>
|
||||
<%- local readmeURL = "https://docs.openwrt.melmac.net/vpn-policy-routing/" -%>
|
||||
|
|
|
@ -5,6 +5,8 @@ This is free software, licensed under the Apache License, Version 2.0
|
|||
|
||||
<%+cbi/valueheader%>
|
||||
|
||||
<%=self:cfgvalue(section):gsub('\n', '<br/>' )%>
|
||||
<div style="font-weight:bold;">
|
||||
<%=self:cfgvalue(section):gsub('\n', '<br />' )%>
|
||||
</div>
|
||||
|
||||
<%+cbi/valuefooter%>
|
||||
|
|
|
@ -253,6 +253,10 @@ msgstr ""
|
|||
msgid "Select Append for -A and Insert for -I."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vpn-policy-routing/luasrc/model/cbi/vpn-policy-routing.lua:153
|
||||
msgid "Service Control"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vpn-policy-routing/luasrc/model/cbi/vpn-policy-routing.lua:143
|
||||
msgid "Service Errors"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in a new issue