summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/log/log.component.html
blob: df69db51d6214434494a09a352dec33585b4ca5f (plain)
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
<div class="stdForm">
                <br/>
        <div class="tab-content">
                <h3>Step {{stepNo}} - Report Log</h3>
        </div>
        <br/>
         <span class="ecomp-spinner" *ngIf="showSpinner"></span>   
        
        <div *ngIf="!showSpinner">
                <label>Report Logs</label>
                <table>
                        <tr>
                                <th>NO</th>
                                <th>User Name</th>
                                <th>Log Time</th>
                                <th>Action</th>
                                <th>TimeTaken</th>
                        </tr>
                        <tr *ngFor="let item of logDataList; let i = index;">
                                <td><label>{{i+1}}</label></td>
                                <td><label>{{item.userName}}</label></td>
                                <td><label>{{item.logTime}}</label></td>
                                <td>
                                        <div *ngIf="item.action.split('||')[0] == 'linkToReport'">
                                                <a (click)="linkToReport(item.action.split('||')[1], item.action.split('||')[2]+item.action.split('||')[4])" [routerLink]="">{{item.action.split('||')[3]}}</a>
                                                </div>
                                               <div *ngIf="item.action.split('||')[0] != 'linkToReport'"><label>{{item.action}}</label></div>
                                
                                </td>
                                <td><label>{{item.timeTaken}}</label></td>

                        </tr>
                </table>
        </div>
</div>