mirror of https://git.openwrt.org/project/luci.git
applications/luci-polipo: add a simple status frame
This commit is contained in:
parent
8a37f56006
commit
b49c904552
|
@ -17,12 +17,12 @@ function index()
|
|||
if not nixio.fs.access("/etc/config/polipo") then
|
||||
return
|
||||
end
|
||||
|
||||
require("luci.i18n")
|
||||
luci.i18n.loadc("polipo")
|
||||
|
||||
require("luci.i18n").loadc("polipo")
|
||||
local i18n = luci.i18n.translate
|
||||
|
||||
local p = entry({"admin", "services", "polipo"}, cbi("polipo"), i18n("Polipo"))
|
||||
p.dependent = true
|
||||
p.i18n = "polipo"
|
||||
|
||||
entry({"admin", "services", "polipo"}, alias("admin", "services", "polipo", "config"), "Polipo").i18n = "polipo"
|
||||
entry({"admin", "services", "polipo", "status"}, template("polipo_status"), i18n("Status"))
|
||||
entry({"admin", "services", "polipo", "config"}, cbi("polipo"), i18n("Configuration"))
|
||||
end
|
||||
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
<%
|
||||
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
local addr = "127.0.0.1"
|
||||
local port = uci:get("polipo", "general", "proxyPort") or "8123"
|
||||
|
||||
-%>
|
||||
|
||||
<%+header%>
|
||||
|
||||
<div class="cbi-map">
|
||||
<h2><a id="content" name="content"><%:Polipo Status%></a></h2>
|
||||
<div class="cbi-section">
|
||||
<iframe id="sf" src="http://<%=luci.http.getenv('SERVER_NAME')%>:<%=port%>/polipo/" style="width:100%; height:350px; border:none"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<%+footer%>
|
Loading…
Reference in New Issue