phpservermon/src/templates/server/history.tpl.html

54 lines
2.1 KiB
HTML
Raw Normal View History

<!--%tpl_server_history-->
2014-03-24 02:29:22 +01:00
<link href="static/plugin/jqplot/jquery.jqplot.min.css" rel="stylesheet" >
<!--[if lt IE 9]><script type="text/javascript" src="static/plugin/excanvas.js"></script><![endif]-->
<script type="text/javascript" src="static/plugin/jqplot/jquery.jqplot.min.js"></script>
<script type="text/javascript" src="static/plugin/jqplot/jqplot.canvasOverlay.min.js"></script>
<script type="text/javascript" src="static/plugin/jqplot/jqplot.cursor.min.js"></script>
2014-03-24 02:29:22 +01:00
<script type="text/javascript" src="static/plugin/jqplot/jqplot.dateAxisRenderer.min.js"></script>
<script type="text/javascript" src="static/plugin/jqplot/jqplot.highlighter.min.js"></script>
<link href="static/css/history.css" rel="stylesheet" >
<script type="text/javascript">
var day_format = '{day_format}';
var long_date_format = '{long_date_format}';
var short_date_format = '{short_date_format}';
var short_time_format = '{short_time_format}';
</script>
2014-03-24 02:29:22 +01:00
<script type="text/javascript" src="static/js/history.js"></script>
<div id="history-panel">
<!--%tpl_repeat_graphs-->
2014-03-24 02:29:22 +01:00
<div class="chart-row">
<div class="chart-container">
<div class="chart-content">
<div id="chart{chart_id}" class="chart" data-title="{title}" data-plotMode="{plotmode}" data-endTime="{end_timestamp}" data-series="{series}" data-lines="{server_lines}" data-down="{server_down}"></div>
2014-03-24 02:29:22 +01:00
</div>
</div>
<div class="info-container">
<div class="info-content">
<div class="info-dropdown btn-group">
<button class="btn dropdown-toggle" data-toggle="dropdown"><i class="icon-info-sign"></i></button>
<!--%tpl_repeat_info-->
<li><span>{label}: {value}</span></li>
<!--%%tpl_repeat_info-->
<ul class="dropdown-menu">{info}</ul>
2014-03-24 02:29:22 +01:00
</div>
<div class="server-info">
<ul>{info}</ul>
2014-03-24 02:29:22 +01:00
</div>
</div>
<div class="chart-selector">
<div class="btn-group">
<!--%tpl_repeat_buttons-->
<button class="btn {class_active}" data-chartId="{chart_id}" data-chartMode="{mode}" >{label}</button>
<!--%%tpl_repeat_buttons-->
{buttons}
</div>
2014-03-24 02:29:22 +01:00
</div>
</div>
</div>
<div style="clear: both;">&nbsp;</div>
<!--%%tpl_repeat_graphs-->
{graphs}
2014-03-24 02:29:22 +01:00
</div>
<!--%%tpl_server_history-->