-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsenator.html
108 lines (90 loc) · 4.89 KB
/
senator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Senator - Accountability Texas</title>
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/DataTables/dataTables.min.js"></script>
<script type="text/javascript" src="js/DataTables/jquery.dataTables.min.js"></script>
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="css/dataTables.min.css">
<link type="text/css" rel="stylesheet" href="css/site.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<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" href="index.html"><img class="navbar-img" alt="Brand" src="images/logo.png" /><p class="navbar-img-desc"><span class="text-influence">INFLUENCE</span>.<span class="text-tx">TX</span></p></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="senators.html">Senators</a></li>
<li><a href="representatives.html">Representatives</a></li>
<li><a href="bills.html">Bills</a></li>
<li><a href="http://www.fyi.legis.state.tx.us/Home.aspx">Who Reps Me? <span class="glyphicon glyphicon-new-window" aria-hidden="true"></span></a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<header class="text-center">
<a href="senators.html" class="btn btn-primary">Back</a>
<h1 id="senatorName" name="senatorName"></h1>
<h3 id="district" name="district"></h3>
<div class="div-image center-block">
<img id="senatorImg" name="senatorImg" class="center-block"/>
</div>
</header>
<main>
<div class="div-table">
<p class="text-center lead">Click on a row to filter bills relating to the industry.</p>
<table id="contributors" name="contributors" class="table table-bordered table-hover table-striped">
<thead>
<tr >
<th class="text-center">Contributing Industry</th>
<th class="text-center">Total Contributions ($)</th>
</tr>
</thead>
</table>
</div>
<div class="div-table">
<p class="text-center lead">Click on a row to filter industries relating to the bill.</p>
<table id="votes" name="votes" class="table table-bordered table-hover table-striped">
<thead>
<tr >
<th class="text-center">Bill</th>
<th class="text-center">Industry Tags</th>
<th class="text-center">Vote</th>
</tr>
</thead>
<tbody>
<tr>
<td>HB100</td>
<td id="hb100Tags" name="hb100Tags" class="tags"></td>
<td id="hb100Vote" name="hb100Vote"></td>
</tr>
<tr>
<td>SB1004</td>
<td id="sb1004Tags" name="sb1004Tags" class="tags"></td>
<td id="sb1004Vote" name="sb1004Vote"></td>
</tr>
</tbody>
</table>
</div>
<button id="clearFilters" name="clearFilters" class="btn btn-primary center-block" type="button">Clear Filters</button>
</main>
<hr />
<footer>
</footer>
<script type="text/javascript" src="js/senator.js"></script>
</body>
</html>