forked from HarlanH/code-for-dc-edu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
school.html
60 lines (56 loc) · 2.72 KB
/
school.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
---
layout: default
title: Schools
---
<div class="container-fluid">
<div class="row-fluid">
<div class="span4">
<b>Select a school from the dropdown menu to see where its students commute from.
<div>Choose which schools are available through the dropdown menu using the buttons.</div>
</b>
<p>
<div id="systembuttons" class="btn-group " data-toggle="buttons-checkbox">
<button value="charter" id="charter" type="button" class="btn btn-primary active ">Charter</button>
<button value="public" id="public" type="button" class="btn btn-primary active ">Public</button>
</div>
<div id="levelsbuttons" class="btn-group " data-toggle="buttons-checkbox">
<button value="elementary" id="elementary" type="button" class="btn btn-primary active ">Elementary</button>
<button value="middle" id="middle" type="button" class="btn btn-primary active ">Middle</button>
<button value="high" id="high" type="button" class="btn btn-primary active ">High</button>
</div>
</p>
<p>
<div id="wardsbuttons" class="btn-group2" data-toggle="buttons-radio">
<button name="ward" value="allwards" id="allwards" type="button" class="btn active"
> All Wards</button>
<button name="ward" value="w1" id="w1" type="button" class="btn"
> 1</button>
<button name="ward" value="w2" id="w2" type="button" class="btn"
> 2</button>
<button name="ward" value="w3" id="w3" type="button" class="btn"
> 3</button>
<button name="ward" value="w4" id="w4" type="button" class="btn"
> 4</button>
<button name="ward" value="w5" id="w5" type="button" class="btn"
> 5</button>
<button name="ward" value="w6" id="w6" type="button" class="btn"
> 6</button>
<button name="ward" value="w7" id="w7" type="button" class="btn"
> 7</button>
<button name="ward" value="w8" id="w8" type="button" class="btn"
> 8</button>
</div>
</p>
<!--- starting with all wards and all schools active --->
<select id="schoolsList" name="schoolsList" onchange="schoolListSelected('find_active')"></select>
</div>
<div class="span8">
<!-- http://stackoverflow.com/questions/11316383/bootstrap-hero-unit-height-leaflet -->
<div id="map" style="height: 600px"></div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
</div>
</div>
</div>
<script src="school-postload.js"></script>