small-packages/luci-app-npc/luasrc/view/npc/npc_status.htm
2026-05-10 09:48:30 +08:00

24 lines
770 B
HTML
Executable File

<script type="text/javascript">//<![CDATA[
XHR.poll(3, '<%=url([[admin]], [[services]], [[npc]], [[status]])%>', null,
function(x, data) {
var tb = document.getElementById('npc_status');
if (data && tb) {
if (!data.installed) {
tb.innerHTML = '<em><b><font color="red">NPC <%:NOT INSTALLED%></font></b></em>';
} else if (data.running) {
tb.innerHTML = '<em><b><font color=green>NPC(' + data.version + ') <%:RUNNING%></font></b></em>';
} else {
tb.innerHTML = '<em><b><font color=red>NPC(' + data.version + ') <%:NOT RUNNING%></font></b></em>';
}
}
}
);
//]]>
</script>
<style>.mar-10 {margin-left: 50px; margin-right: 10px;}</style>
<fieldset class="cbi-section">
<p id="npc_status">
<em><%:Collecting data...%></em>
</p>
</fieldset>