1
0
mirror of https://github.com/kenzok8/small-package synced 2025-09-20 19:11:30 +08:00
Files
small-package/luci-app-supervisord/luasrc/view/supervisord/index.htm
github-actions[bot] 96e6f38956 update-12.04
2021-12-04 09:01:13 +08:00

21 lines
580 B
HTML

<script type="text/javascript">
XHR.poll(3, '<%=url([[admin]], [[services]], [[supervisord]], [[status]])%>', null,
function(x, data) {
var tb = document.getElementById('status');
if (data && tb) {
if (data.running) {
var links = '<em><b><font color=green>Supervisord <%:RUNNING%></font></b></em>';
tb.innerHTML = links;
} else {
tb.innerHTML = '<em><b><font color=red>Supervisord <%:NOT RUNNING%></font></b></em>';
}
}
}
);
</script>
<style></style>
<fieldset class="cbi-section">
<p id="status">
<em><%:Collecting data...%></em>
</p>
</fieldset>