aboutsummaryrefslogtreecommitdiff
path: root/ui/assoc-day.html
diff options
context:
space:
mode:
Diffstat (limited to 'ui/assoc-day.html')
-rw-r--r--ui/assoc-day.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/ui/assoc-day.html b/ui/assoc-day.html
new file mode 100644
index 0000000..2255325
--- /dev/null
+++ b/ui/assoc-day.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Single Day Association Results</title>
+
+ <link rel="stylesheet" type="text/css" href="static/table-sort.css" />
+ <script type="text/javascript" src="static/table-lib.js"></script>
+
+ <link rel="stylesheet" type="text/css" href="static/ui.css" />
+ <script type="text/javascript" src="static/ui.js"></script>
+ </head>
+
+ <body onload="initAssocDay(gUrlHash, gTableStates, kStatusElem);"
+ onhashchange="onHashChange(gUrlHash, gTableStates, kStatusElem);">
+ <p id="status"></p>
+
+ <!-- TODO: up to metric? Nav bar. -->
+ <p style="text-align: right">
+ <a href="../home.html">Home</a> /
+ <a href="assoc-overview.html">Association Overview</a>
+ </p>
+
+ <!-- NOTE: There is a metric description here. Get it from the XML file.
+ -->
+
+ <h2 id="metricDay"></h2>
+
+ <table id="results_table">
+ </table>
+
+ <p>
+ <!-- link depends on fragment; filled in by JS -->
+ Underlying data: <a id="underlying" href="">assoc-results.csv</a>
+ </p>
+
+ <!-- page globals -->
+ <script type="text/javascript">
+ var gUrlHash = new UrlHash(location.hash);
+ var gTableStates = {};
+ var kStatusElem = document.getElementById('status');
+ </script>
+
+ </body>
+</html>