2017-02-17 10:22:01 +00:00
|
|
|
<%+header%>
|
|
|
|
|
|
|
|
<ul class="cbi-tabmenu">
|
2018-01-18 12:51:47 +00:00
|
|
|
<li class="cbi-tab-disabled"><a href="<%=luci.dispatcher.build_url("admin/status/mwan/overview")%>"><%:Interface%></a></li>
|
|
|
|
<li class="cbi-tab-disabled"><a href="<%=luci.dispatcher.build_url("admin/status/mwan/detail")%>"><%:Detail%></a></li>
|
2018-01-11 09:55:09 +00:00
|
|
|
<li class="cbi-tab-disabled"><a href="<%=luci.dispatcher.build_url("admin/status/mwan/diagnostics")%>"><%:Diagnostics%></a></li>
|
|
|
|
<li class="cbi-tab"><a href="<%=luci.dispatcher.build_url("admin/status/mwan/troubleshooting")%>"><%:Troubleshooting%></a></li>
|
2017-02-17 10:22:01 +00:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="<%=resource%>/cbi.js"></script>
|
|
|
|
<script type="text/javascript">//<![CDATA[
|
2018-01-11 09:55:09 +00:00
|
|
|
XHR.poll(15, '<%=luci.dispatcher.build_url("admin", "status", "mwan", "troubleshooting_display")%>', null,
|
2018-01-18 13:45:18 +00:00
|
|
|
function(x)
|
2017-02-17 10:22:01 +00:00
|
|
|
{
|
2018-01-18 13:45:18 +00:00
|
|
|
var legend = document.getElementById('diag-rc-legend');
|
|
|
|
var output = document.getElementById('diag-rc-output');
|
|
|
|
legend.style.display = 'none';
|
|
|
|
output.innerHTML = String.format('<pre>%h</pre>', x.responseText);
|
2017-02-17 10:22:01 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
//]]></script>
|
|
|
|
|
2018-01-18 13:45:18 +00:00
|
|
|
<div class="cbi-map">
|
|
|
|
<h2 name="content"><%:MWAN Status - Troubleshooting%></h2>
|
2017-02-17 10:22:01 +00:00
|
|
|
<fieldset class="cbi-section">
|
2018-01-18 13:45:18 +00:00
|
|
|
<legend id="diag-rc-legend"><%:Collecting data...%></legend>
|
|
|
|
<span id="diag-rc-output">
|
|
|
|
<img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align: middle;" />
|
|
|
|
</span>
|
2017-02-17 10:22:01 +00:00
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%+footer%>
|