19 lines
618 B
HTML
19 lines
618 B
HTML
<%#
|
|
Copyright 2016 Chen RuiWei <crwbak@gmail.com>
|
|
Licensed to the public under the Apache License 2.0.
|
|
-%>
|
|
|
|
<% include("cbi/map") %>
|
|
<script type="text/javascript">//<![CDATA[
|
|
XHR.poll(2, '<%=luci.dispatcher.build_url("admin", "control", "webrestriction", "status")%>', null,
|
|
function(x, result)
|
|
{
|
|
var status = document.getElementsByClassName('webrestriction_status')[0];
|
|
status.setAttribute("style","font-weight:bold;");
|
|
status.setAttribute("color",result.status ? "green":"red");
|
|
status.innerHTML = result.status?'<%=translate("RUNNING")%>':'<%=translate("NOT RUNNING")%>';
|
|
}
|
|
)
|
|
//]]>
|
|
</script>
|