forked from paulsp94/3WDashboardEthiopia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (87 loc) · 3.03 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>Dashboard</title>
<link rel="stylesheet" href="./static/lib/css/bootstrap.min.css">
<link rel="stylesheet" href="./static/lib/css/keen-dashboards.css">
<link rel="stylesheet" href="./static/lib/css/dc.css">
<link rel="stylesheet" href="./static/css/custom.css">
</head>
<body class="application">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="./">3W-Dashboard Ethiopia</a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row row-eq-height" style="padding: 0px 10px 0;">
<!-- Who Row -->
<div class="col-md-6">
<div class="chart-wrapper">
<div class="chart-title">
WHO
</div>
<div class="chart-stage">
<div id="who-chart"></div>
</div>
</div>
</div>
<!-- Who Row -->
<!-- What Row -->
<div class="col-md-6">
<div class="chart-wrapper">
<div class="chart-title">
WHAT
</div>
<div class="chart-stage">
<div id="what-chart"></div>
</div>
</div>
</div>
<!-- What Row -->
</div>
<div class="row row-eq-height" style="padding: 0px 10px 0;" style="padding: 0px 10px 0;">
<!-- Map -->
<div class="col-md-6">
<div class="chart-wrapper">
<div class="chart-title">
WHERE
</div>
<div class="chart-stage">
<div id="where-chart"></div>
</div>
</div>
</div>
<!-- Map -->
<!-- Status Pie -->
<div class="col-md-6">
<div class="chart-wrapper">
<div class="chart-title">
Status of Projects
</div>
<div class="chart-stage">
<div id="status-chart"></div>
</div>
</div>
</div>
<!-- Status Pie -->
</div>
<hr>
<p class="small text-muted">Made by <a href="https://www.linkedin.com/in/paul-spende/">Paul Spende</a></p>
<p class="small text-muted">Dataset: <a
href="https://data.humdata.org/dataset/ethiopia-3w-operational-presence-august-2017">Ethiopia - 3W
Operational Presence August 2017</a></p>
</div>
<script src="./static/lib/js/jquery.min.js"></script>
<script src="./static/lib/js/tether.min.js"></script>
<script src="./static/lib/js/bootstrap.min.js"></script>
<script src="./static/lib/js/crossfilter.js"></script>
<script src="./static/lib/js/d3.js"></script>
<script src="./static/lib/js/dc.js"></script>
<script src="./static/lib/js/queue.js"></script>
<script src="./static/lib/js/keen.min.js"></script>
<script src='./static/js/graphs.js' type='text/javascript'></script>
</body>
</html>