summaryrefslogtreecommitdiffstats
path: root/docker/storperf-reporting/src/templates/plot_tables.html
diff options
context:
space:
mode:
Diffstat (limited to 'docker/storperf-reporting/src/templates/plot_tables.html')
-rw-r--r--docker/storperf-reporting/src/templates/plot_tables.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/docker/storperf-reporting/src/templates/plot_tables.html b/docker/storperf-reporting/src/templates/plot_tables.html
index ecdf764..536bb42 100644
--- a/docker/storperf-reporting/src/templates/plot_tables.html
+++ b/docker/storperf-reporting/src/templates/plot_tables.html
@@ -4,12 +4,12 @@
<head>
<meta charset="utf-8" />
<title>Chart | Storperf</title>
- <link rel="stylesheet" href="/reporting/css/bootstrap.min.css">
- <script src="/reporting/js/jquery-2.1.3.min.js"></script>
- <script src="/reporting/js/bootstrap.min.js"></script>
- <script src="/reporting/js/jquery.bootpag.min.js"></script>
- <script src="/reporting/js/plotly-latest.min.js"></script>
- <script src="/reporting/js/Chart.min.js"></script>
+ <link rel="stylesheet" href="/reporting/3rd_party/css/bootstrap.min.css">
+ <script src="/reporting/3rd_party/js/jquery-2.1.3.min.js"></script>
+ <script src="/reporting/3rd_party/js/bootstrap.min.js"></script>
+ <script src="/reporting/3rd_party/js/jquery.bootpag.min.js"></script>
+ <script src="/reporting/3rd_party/js/plotly-latest.min.js"></script>
+ <script src="/reporting/3rd_party/js/Chart.min.js"></script>
<style>
</style>
</head>
@@ -41,8 +41,8 @@
text += "<h4> Start Date : " + results["start_date"] + "</h4>";
text += "<h4> Criteria : " + results["criteria"] + "</h4>";
text += "<h4> Build Tag : " + results["build_tag"] + "</h4>";
- text += "<button type='button' class='btn btn-default btn-lg' onclick=add_info()> Click here to view details </button>";
- text += "</div>";
+ text += "<button type='button' class='btn btn-default btn-lg' onclick=add_info()> Click here to view details </button>";
+ text += "</div>";
text += "<div id='info'></div>";
$("#content").html(text);
}
@@ -55,7 +55,7 @@
text += "<h4> Build Tag : " + results["build_tag"] + "</h4>";
text += "<button type='button' class='btn btn-default btn-lg' onclick=create_block_report()> Steady State Convergence Report - All Block Sizes </button>";
text += "<div class='row' id='block_report'></div>"
- text += "</div>";
+ text += "</div>";
text += "<div id='info'></div>";
for (var i = 0; i < keys.length; i++ ){
text += "<div class='row' id='row-"+ keys[i] +"'>";
@@ -89,7 +89,7 @@
for( item in report_data[key][test] ){
var state = report_data[key][test][item]["steady_state"];
text += "<li onclick=create_modal('" + key + "','" + test + "','" + item + "') id='";
- text += key + "-" + test + "-" + item + "'>" + item + " (steady state: " + state +")";
+ text += key + "-" + test + "-" + item + "'>" + item + " (steady state: " + state +")";
text += "<br><div id='modal-" + key + "-" + test + "-" + item + "'>";
text += '<div class="modal-content-'+ key + '-' + test + '-' + item +'">';
text += '<div id="modal-text-'+ key + '-' + test + '-' + item +'"></div>';
@@ -280,7 +280,7 @@
for(i in report_data){
if(report_data[i][test] == undefined && test == 'lat_ns.mean')
test = 'lat.mean';
- data[i] = report_data[i][test][key];
+ data[i] = report_data[i][test][key];
}
document.getElementById('close-block-report-'+key+'-'+test).style.display = 'block';
var modal = document.getElementById('modal-block-report-'+key+'-'+test);
@@ -327,4 +327,4 @@
</script>
</body>
-</html> \ No newline at end of file
+</html>