-
Notifications
You must be signed in to change notification settings - Fork 1
/
stats.html
122 lines (97 loc) · 4.42 KB
/
stats.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html >
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<title>Public Utilities GIS Edits Dashboard</title>
<!-- Bootstrap core CSS -->
<link href="../dashboard/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="../dashboard/dist/css/stylesheet.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link rel="icon" type="image/ico" href="../dashboard/dist/img/favicon.ico" />
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" style="background-color:#5c8fea;" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" style="color:white;" href="../dashboard/index.html">Public Utilites Dashboard</a>
</div>
</div>
</div>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="container">
<br><br>
</div>
<div class="container" >
<!-- Example row of columns -->
<div class="row" >
<div class="col-md-12" >
<h1 class="text-success">Public Utilities System Statistics <small id='date'></small></h1>
</div>
</div>
<div class="row">
<div class="col-md-4 bg-info">
<h2 class="text-primary">Pressure Mains</h2>
<p id='pressuremains'></p>
<h2 class="text-primary">Water System Valves</h2>
<p id='systemvalves'></p>
<h2 class="text-primary">Water Service Connections</h2>
<p id='waterserviceconnection'></p>
<h2 class="text-primary">Hydrants</h2>
<ul id='hydrants' class="list-group"></ul>
<h2 class="text-primary">Water Network Structures</h2>
<ul id='WNS' class="list-group"></ul>
</div>
<div class="col-md-4 bg-success">
<h2 class="text-success">Gravity Mains</h2>
<p id='gravityMains'></p>
<h2 class="text-success">Manholes</h2>
<p id='manholes'></p>
<h2 class="text-success">Cleanouts</h2>
<p id='cleanouts'></p>
<h2 class="text-success">Sewer Network Structures</h2>
<ul id='SNS' class="list-group"></ul>
</div>
<div class="col-md-4" style="background-color:#D4A9EC">
<h2 style="color:#491256">Reuse Pressure Mains</h2>
<p id='reusepressuremains'></p>
<h2 style="color:#491256">Reuse System Valves</h2>
<p id='reusesystemvalves'></p>
<h2 style="color:#491256">Reuse Service Connections</h2>
<p id='reuseserviceconnections'></p>
<h2 style="color:#491256">Reuse Network Structures</h2>
<ul id='RNS' class="list-group"></ul>
</div>
<br><br>
</div> <!-- /container -->
<footer>
<p>© City of Raleigh- Public Utilities 2014</p>
</footer>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!--<script src="../dashboard/dist/js/jquery-2.0.3.min.js"></script>-->
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="../dashboard/dist/js/Chart.js"></script>
<script src="../dashboard/dist/js/bootstrap.min.js"></script>
<script src="http://js.arcgis.com/3.8/"></script>
<script type="text/javascript" src="../dashboard/dist/js/index.js"></script>
</body>
</html>