-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
38 lines (37 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CCDH Project Task Dashboard</title>
<link rel="icon" type="image/png" href="favicon-16x16.png" />
<link rel="stylesheet" href="js/lib/frappe-gantt/frappe-gantt.css" />
<link rel="stylesheet" href="css/ccdh-styles.css" />
<script type="text/javascript" src="js/lib/frappe-gantt/frappe-gantt.js"></script>
<script type="text/javascript" src="js/lib/jquery.min.js"></script>
</head>
<body>
<div class="container">
<h2>CCDH Project Task Dashboard</h2>
<div class="completed-view right">
<button type="button" class="btnHideComplete">Hide Completed Tasks</button>
</div>
<div class="chart-view" role="group">
<span class="comdev-bg viewbtn"><button type="button" class="view active comdev">Community Development</button> </span>
<span class="dmh-bg viewbtn"><button type="button" class="view active dmh">Data Model Harmonization</button> </span>
<span class="ccdhmodel-bg viewbtn"><button type="button" class="view active ccdhmodel">CRDCH Model</button> </span>
<span class="term-bg viewbtn"><button type="button" class="view active term">Terminology</button> </span>
<span class="tools-bg viewbtn"><button type="button" class="view active tools">Tools</button> </span>
<span class="ops-bg viewbtn"><button type="button" class="view active ops">Operations</button> </span>
</div>
<div class="gantt-target"></div>
<div class="right">
<button class="admin" onclick="writeGanttDataFile()">Create TSV - All GitHub Issues</button>
</div>
<div class="timeline-view" role="group">
<button type="button" class="btn active">Month</button>
<button type="button" class="btn">Year</button>
</div>
</div>
<script src="js/get-issue-data.js"></script>
</body>
</html>