-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.html
More file actions
43 lines (40 loc) · 1.38 KB
/
Copy pathview.html
File metadata and controls
43 lines (40 loc) · 1.38 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
<!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.0">
<title>All transactions</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div ng-controller="MyController">
<h2>View Data </h2>
<br>
<section id="tableSection" class="container mt-5">
<table class="table table-striped">
<thead>
<tr class="bg-primary">
<th scope="col">Id</th>
<th scope="col">Name</th>
<th scope="col">Designation</th>
<th scope="col">Location</th>
<th scope="col">Salary</th>
<th scope="col">Department</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="data in datas">
<td scope="row">{{data.id}}</td>
<td>{{data.name}}</td>
<td>{{data.email}}</td>
<td>{{data.item}}</td>
<td>{{data.amount}}</td>
<td>{{data.status}}</td>
</tr>
</tbody>
</table>
</section>
</div>
</body>
</html>