polipo_status.htm 422 B

123456789101112131415161718
  1. <%
  2. local uci = require "luci.model.uci".cursor()
  3. local addr = "127.0.0.1"
  4. local port = uci:get("polipo", "general", "proxyPort") or "8123"
  5. -%>
  6. <%+header%>
  7. <div class="cbi-map">
  8. <h2 name="content"><%:Polipo Status%></h2>
  9. <div class="cbi-section">
  10. <iframe id="sf" src="http://<%=luci.http.getenv('SERVER_NAME')%>:<%=port%>/polipo/" style="width:100%; height:350px; border:none"></iframe>
  11. </div>
  12. </div>
  13. <%+footer%>