-
Notifications
You must be signed in to change notification settings - Fork 4
/
issues.html
79 lines (79 loc) · 2.39 KB
/
issues.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Driver Navigation | GEAR Systems</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/issues.js"></script>
</head>
<style>
</style>
<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">
<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="#">Driver Navigation Portal | GEAR Systems</a>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<ul class="nav nav-tabs">
<li class="active"><a href="#currentIssues" data-toggle="tab">Current Issues</a></li>
<li><a href="#resolvedIssues" data-toggle="tab">Resolved Issues</a></li>
<li class="disabled"><a>Administration</a></li>
</ul>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade active in" id="currentIssues">
<p>Total Number of resolved issues on a total</p>
<div class="progress progress-striped active">
<div class="progress-bar" style="width: 45%"></div>
</div>
<h1>Here is a list of current issues to be resolved</h1>
<table class="table table-striped table-hover ">
<thead>
<tr>
<th>Issue Number</th>
<th>Issue Details</th>
<th>Issue Location</th>
<th>Issue Date</th>
<th>Drive route</th>
</tr>
</thead>
<tbody id="current">
</tbody>
</table>
</div>
<div class="tab-pane fade" id="resolvedIssues">
<p>Total Number of resolved issues on a total</p>
<div class="progress progress-striped active">
<div class="progress-bar" style="width: 45%"></div>
</div>
<h1>Here is a list of issues to be resolved</h1>
<table class="table table-striped table-hover " id="resolved">
<thead>
<tr>
<th>Issue Number</th>
<th>Issue Details</th>
<th>Issue Location</th>
<th>Issue Date</th>
<th>Drive route</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>