-
Notifications
You must be signed in to change notification settings - Fork 265
/
Copy pathtracker.component.html
25 lines (24 loc) · 946 Bytes
/
tracker.component.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
<div>
<h2 jhiTranslate="tracker.title">Real-time user activities</h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th jhiTranslate="tracker.table.userlogin">User</th>
<th jhiTranslate="tracker.table.ipaddress">IP Address</th>
<th jhiTranslate="tracker.table.page">Current page</th>
<th jhiTranslate="tracker.table.time">Time</th>
<th></th>
</tr>
</thead>
<tbody>
<tr *ngFor="let activity of activities">
<td>{{activity.userLogin}}</td>
<td>{{activity.ipAddress}}</td>
<td>{{activity.page}}</td>
<td>{{activity.time | date:'yyyy-MM-dd HH:mm:ss'}}</td>
</tr>
</tbody>
</table>
</div>
</div>