forked from useshortcut/project-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.38 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
<title>Clubhouse Project Analytics</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,900" rel="stylesheet">
<link href="app.css" rel="stylesheet">
</head>
<body>
<div id="source-links">
<a href="https://app.clubhouse.io">Back to Clubhouse</a>
<a href="https://github.com/clubhouse/project-analytics">View Source on GitHub</a>
</div>
<div id="container">
<h1>Clubhouse Project Analytics</h1>
<div id="project-selector-parent"><select id="project-selector" onchange="onProjectSelect()"></select><span class="pseudo-arrow"></span></div>
<div id="no-chart-found"></div>
<div id="chart-container" class="clearfix">
<div id="last-fetched"></div>
<div class="left-column">
<div id="current-story-type-ratio" class="chart"></div>
<div id="story-type-ratios" class="chart"></div>
<div id="story-type-data" class="chart"></div>
</div>
<div class="right-column">
<div id="monthly-velocity-chart" class="chart"></div>
<div id="cycle-time-chart" class="chart"></div>
<div id="estimate-ratios" class="chart"></div>
</div>
</div>
</div>
<script src="https://www.gstatic.com/charts/loader.js"></script>
<script src="data/projects.js"></script>
<script src="client.js"></script>
</body>
</html>