1<!DOCTYPE html> 2<html> 3 <head> 4 <title></title> <!-- filled in by JS --> 5 6 <script type="text/javascript" src="static/dygraph-combined.js"></script> 7 8 <link rel="stylesheet" type="text/css" href="static/table-sort.css" /> 9 <script type="text/javascript" src="static/table-lib.js"></script> 10 11 <link rel="stylesheet" type="text/css" href="static/ui.css" /> 12 <script type="text/javascript" src="static/ui.js"></script> 13 </head> 14 15 <body onload="initAssocPair(gUrlHash, gTableStates, kStatusElem, globals);" 16 onhashchange="onHashChange(gUrlHash, gTableStates, kStatusElem);"> 17 <p id="status"></p> 18 19 <p style="text-align: right"> 20 <a href="../home.html">Home</a> / 21 <a href="assoc-overview.html">Association Overview</a> 22 </p> 23 24 <h1 id="pageTitle"></h1> <!-- filled in by JS --> 25 26 <p id="metricDesc"></p> <!-- filled in by JS --> 27 28 <h2>Task Status</h2> 29 30 <table id="status_table"> 31 </table> 32 33 <p> 34 <!-- link depends on fragment; filled in by JS --> 35 Underlying data: <a id="underlying-status" href=""></a> 36 </p> 37 38 <!-- page globals --> 39 <script type="text/javascript"> 40 var globals = {proportionsDygraph: null}; 41 var gUrlHash = new UrlHash(location.hash); 42 var gTableStates = {}; 43 var kStatusElem = document.getElementById('status'); 44 </script> 45 46 </body> 47</html> 48