blob: 34fb3fcb794ea9bf54ba679933262eca2d98ffaf [file] [log] [blame]
SANDHYA.JS26570112024-07-05 21:35:46 +05301<!--
2Copyright 2020 TATA ELXSI
3
4Licensed under the Apache License, Version 2.0 (the 'License');
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15
16Author: SANDHYA JS (sandhya.j@tataelxsi.co.in)
17-->
18<div class="d-flex flex-row justify-content-between">
19 <div class="d-flex align-items-center header-style">{{'PAGE.K8S.APP' | translate}}</div>
20 <span class="button">
21 <button class="btn btn-primary me-2" type="button" placement="top" container="body"
22 ngbTooltip="{{'Create Profile' | translate}}" (click)="addProfile()">
23 <i class="fas fa-plus-circle" aria-hidden="true"></i>&nbsp; {{'PAGE.K8S.CREATEPROFILE' | translate}}
24 </button>
25 </span>
26</div>
27<div class="mt-2 mb-2 list-utilites-actions">
28 <div class="col-auto me-auto">
29 <nav class="custom-items-config">
30 <span><i class="fas fa-clock text-success"></i>{{operationalStateFirstStep}}</span>
31 <span><i class="fas fa-spinner text-warning"></i>{{operationalStateSecondStep}}</span>
32 <span><i class="fas fa-spinner text-danger"></i>{{operationalStateThirdStep}}</span>
33 <span><i class="fas fa-times-circle text-danger"></i>{{operationalStateFourthStep}}</span>
34 <span><i class="fas fa-times-circle text-warning"></i>{{operationalStateFifthStep}}</span>
35 </nav>
36 </div>
37 <page-per-row class="me-2" (pagePerRow)="onChange($event)"></page-per-row>
38 <page-reload></page-reload>
39</div>
40<div class="smarttable-style bg-white mt-1">
41 <ng2-smart-table [ngClass]="checkDataClass" [settings]="settings" [source]="dataSource"
42 (userRowSelect)="onUserRowSelect($event)">
43 </ng2-smart-table>
44</div>
45<app-loader [waitingMessage]="message" *ngIf="isLoadingResults"></app-loader>