forked from sampadgiri/hackathon-CR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogisticsDept.html
More file actions
51 lines (47 loc) · 1.48 KB
/
LogisticsDept.html
File metadata and controls
51 lines (47 loc) · 1.48 KB
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
<!doctype html>
<html ng-app="App">
<head>
<meta charset="utf-8">
<title>Logistics Team Portal</title>
<link rel="stylesheet" href="style.css">
<script>document.write("<base href=\"" + document.location + "\" />");</script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="HomeApp.js"></script>
<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
</head>
<body ng-controller="MainCtrl">
<div class="jumbotron" id="customers">
<h1>Logistics Team Portal</h1>
<br>
</div>
<h3 id="customers">Order Details</h3>
<table id="customers">
<tr>
<th>Customer Name</th>
<th>Order Number</th>
<th>Customer Type</th>
<th>Carrier</th>
</tr>
<tr ng-repeat="OrderDtl in OrderDtls">
<td>{{OrderDtl.CustName}}</td>
<td>{{OrderDtl.OrderNo}}</td>
<td>{{OrderDtl.CustType}}</td>
<td>{{OrderDtl.Carrier}}</td>
</tr>
<table>
<h3 id="customers">Carrier Ratings</h3>
<table id="customers">
<tr>
<th>Carrier Name</th>
<th>Rating</th>
<th>Visualization</th>
</tr>
<tr ng-repeat="CarrDtl in CarrDtls">
<td>{{CarrDtl.CarrName}}</td>
<td>{{CarrDtl.Rating}}</td>
<td><span class="stars alignright"><span ng-style="{ 'width': getStars({{CarrDtl.Rating}}) }"></span></span></td>
</tr>
<table>
</body>
</html>