| Barath Kumar R | f2ae546 | 2021-03-01 12:52:33 +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: BARATH KUMAR R (barath.r@tataelxsi.co.in) |
| 17 | --> |
| 18 | <div class="modal-header"> |
| 19 | <h4 class="modal-title" id="modal-basic-title">{{ 'EXECUTEDACTIONS' | translate }}</h4> |
| 20 | <button class="button-xs" type="button" class="close" aria-label="Close" (click)="activeModal.close()"> |
| 21 | <i class="fas fa-times-circle text-danger"></i> |
| 22 | </button> |
| 23 | </div> |
| 24 | <div class="modal-body modal-body-custom-height"> |
| 25 | <table class="table table-sm"> |
| 26 | <thead class="thead-dark"> |
| 27 | <tr> |
| 28 | <th scope="col">{{ 'ID' | translate }}</th> |
| 29 | <th scope="col">{{ 'ACTION' | translate }}</th> |
| 30 | <th scope="col">{{ 'OUTPUT' | translate }}</th> |
| 31 | <th scope="col">{{ 'STATUS' | translate }}</th> |
| 32 | <th scope="col">{{ 'VERIFIED' | translate }}</th> |
| 33 | <th scope="col">{{ 'CODE' | translate }}</th> |
| 34 | </tr> |
| 35 | </thead> |
| 36 | <tbody> |
| 37 | <tr *ngFor="let executedActions of executedActionsData"> |
| 38 | <td>{{executedActions.id ? executedActions.id : '-'}}</td> |
| 39 | <td>{{executedActions.action ? executedActions.action : '-'}}</td> |
| 40 | <td>{{executedActions.output ? executedActions.output : '-'}}</td> |
| 41 | <td>{{executedActions.status ? executedActions.status : '-'}}</td> |
| 42 | <td>{{executedActions.verified ? executedActions.verified : '-'}}</td> |
| 43 | <td>{{executedActions.Code ? executedActions.Code : '-'}}</td> |
| 44 | </tr> |
| 45 | <tr class="text-center" *ngIf="isExecutedActionNotAvailable"> |
| 46 | <td colspan="6">{{ 'PAGE.OPERATIONALDASHBOARD.NOEXECUTEDACTIONS' | translate }}</td> |
| 47 | </tr> |
| 48 | </tbody> |
| 49 | </table> |
| 50 | </div> |
| 51 | <div class="modal-footer"> |
| 52 | <button type="button" class="btn btn-danger" (click)="activeModal.close()">{{'CLOSE' | translate}}</button> |
| 53 | </div> |