fixed log4j issue
[eliot.git] / blueprints / common / eliot-ui / frontend-src / src / app / uninstall / uninstall.component.html
1 <div>
2     <app-toolbar></app-toolbar>
3 </div>
4
5 <div class="uninstall-header">
6     <h4>Application Removal / Uninstallation of Deployed Applications </h4>
7 </div>
8
9 <div class="mat-elevation-z8">
10 <div class="uninstall-table">
11
12     <table mat-table [dataSource]="uninstallDataSource">
13
14         <ng-container matColumnDef="id">
15             <th mat-header-cell *matHeaderCellDef> ID </th>
16             <td mat-cell *matCellDef="let eliotUninstall"> {{eliotUninstall.id}} </td>
17         </ng-container>
18
19         <ng-container matColumnDef="appName">
20             <th mat-header-cell *matHeaderCellDef> App Name </th>
21             <td mat-cell *matCellDef="let eliotUninstall"> {{eliotUninstall.appName}} </td>
22         </ng-container>
23
24         <ng-container matColumnDef="nodeIp">
25             <th mat-header-cell *matHeaderCellDef> Node Ip </th>
26             <td mat-cell *matCellDef="let eliotUninstall"> {{eliotUninstall.nodeIp}} </td>
27         </ng-container>
28
29         <ng-container matColumnDef="date">
30             <th mat-header-cell *matHeaderCellDef> Date </th>
31             <td mat-cell *matCellDef="let eliotUninstall"> {{eliotUninstall.date}} </td>
32         </ng-container>
33
34         <ng-container matColumnDef="runningStatus">
35             <th mat-header-cell *matHeaderCellDef> Running Status </th>
36             <td mat-cell *matCellDef="let eliotUninstall"> {{eliotUninstall.runningStatus}} </td>
37         </ng-container>
38
39         
40
41         <tr mat-header-row *matHeaderRowDef="uninstallColumns"></tr>
42         <tr mat-row *matRowDef="let row; columns: uninstallColumns;"></tr>
43     </table>
44
45     <mat-paginator [pageSizeOptions]="[5, 10, 20]" showFirstLastButtons></mat-paginator>
46
47 </div>
48 </div>