| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 1 | <!-- |
| 2 | Copyright 2020 TATA ELXSI |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the 'License'); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | |
| 16 | Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in) |
| 17 | --> |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame] | 18 | <div class="d-flex flex-row justify-content-between"> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 19 | <div class="d-flex align-items-center header-style">{{'NSINSTANCES' | translate}}</div> |
| 20 | <span class="button"> |
| SANDHYA.JS | 8ead52b | 2024-06-10 18:23:41 +0530 | [diff] [blame] | 21 | <button *ngIf="selectList?.length !== 0" class="btn btn-primary me-2" type="button" placement="top" container="body" ngbTooltip="{{'DELETENS' | translate}}" |
| 22 | (click)="deleteNS()"> |
| 23 | <i class="fa fa-trash-alt" aria-hidden="true"></i> {{'DELETENS' | translate}} |
| 24 | </button> |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame] | 25 | <button class="btn btn-primary me-2" type="button" placement="top" container="body" ngbTooltip="{{'PAGE.NSINSTANCE.NEWNSINSTANCE' | translate}}" |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 26 | (click)="instantiateNS()"> |
| 27 | <i class="fa fa-paper-plane" aria-hidden="true"></i> {{'PAGE.NSINSTANCE.NEWNSINSTANCE' | translate}} |
| 28 | </button> |
| 29 | </span> |
| 30 | </div> |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame] | 31 | <div class="mt-2 mb-2 list-utilites-actions"> |
| 32 | <div class="col-auto me-auto"> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 33 | <nav class="custom-items-config"> |
| 34 | <span><i class="fas fa-clock text-warning"></i>{{operationalStateFirstStep}}</span> |
| 35 | <span><i class="fas fa-check-circle text-success"></i>{{operationalStateSecondStep}} / |
| 36 | {{configStateSecondStep}}</span> |
| 37 | <span><i class="fas fa-times-circle text-danger"></i>{{operationalStateThirdStep}}</span> |
| Barath Kumar R | 07698ab | 2021-03-30 11:50:42 +0530 | [diff] [blame] | 38 | <span><i class="fas fa-compress-alt text-success"></i>{{operationalStateFourthStep}}</span> |
| SANDHYA.JS | 219fe61 | 2024-01-23 15:52:43 +0530 | [diff] [blame] | 39 | <span><i class="fas fa-briefcase-medical text-success"></i>{{operationalStateFifthStep}}</span> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 40 | </nav> |
| 41 | </div> |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame] | 42 | <page-per-row class="me-2" (pagePerRow)="onChange($event)"></page-per-row> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 43 | <page-reload></page-reload> |
| 44 | </div> |
| 45 | <div class="smarttable-style bg-white mt-1"> |
| SANDHYA.JS | 8ead52b | 2024-06-10 18:23:41 +0530 | [diff] [blame] | 46 | <ng2-smart-table #table [ngClass]="checkDataClass" [settings]="settings" [source]="dataSource" |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame] | 47 | (userRowSelect)="onUserRowSelect($event)"> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 48 | </ng2-smart-table> |
| 49 | </div> |
| 50 | <app-loader [waitingMessage]="message" *ngIf="isLoadingResults"></app-loader> |