| 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"> |
| Barath Kumar R | 1245fc8 | 2021-04-16 13:34:06 +0530 | [diff] [blame] | 19 | <div class="col-sm-4"> |
| 20 | <div class="d-flex align-items-center header-style">{{'PAGE.VIMDETAILS.VIMACCOUNTDETAILS' | translate}}</div> |
| 21 | </div> |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame^] | 22 | <div class="col-sm-8 text-end"> |
| Barath Kumar R | 1245fc8 | 2021-04-16 13:34:06 +0530 | [diff] [blame] | 23 | <span class="button"> |
| 24 | <button class="btn btn-primary" type="button" placement="top" container="body" |
| 25 | ngbTooltip="{{'PAGE.VIMDETAILS.NEWVIM' | translate}}" routerLink="/vim/new"> |
| 26 | <i class="fas fa-plus-circle" aria-hidden="true"></i> |
| 27 | {{'PAGE.VIMDETAILS.NEWVIM' | translate}} |
| 28 | </button> |
| 29 | </span> |
| 30 | </div> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 31 | </div> |
| 32 | <div class="context-style bg-white mt-2 vim-details"> |
| 33 | <div class="row"> |
| 34 | <div class="col-sm-6 text-dark mb-2 font-weight-bold" *ngFor="let details of vimDetails"> |
| 35 | <label class="col-sm-5 col-form-label">{{ details.title | translate}}</label> |
| 36 | <span class="col-sm-5">{{details.value}}</span> |
| 37 | </div> |
| 38 | </div> |
| 39 | </div> |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame^] | 40 | <div class="d-grid col-sm-12"> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 41 | <button type="button" class="btn btn-block border-0 bg-light text-dark" (click)="isCollapsed = !isCollapsed" |
| 42 | [attr.aria-expanded]="!isCollapsed"> |
| 43 | {{'PAGE.VIMDETAILS.CONFIGPARAMETERS' | translate}} |
| 44 | </button> |
| 45 | </div> |
| 46 | <div id="demo" class="collapse context-style p-2" [ngbCollapse]="isCollapsed"> |
| 47 | <div class="row"> |
| Barath Kumar R | d477b85 | 2020-07-07 15:24:05 +0530 | [diff] [blame] | 48 | <div class="col-sm-6 text-dark mb-2 font-weight-bold" *ngFor="let details of configParams | keyvalue"> |
| 49 | <label class="col-sm-5 col-form-label text-captilize">{{ details.key}}:</label> |
| 50 | <span class="col-sm-5">{{(details.value !== null && details.value !== '' && details.value !== undefined)?details.value : '--'}}</span> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 51 | </div> |
| 52 | </div> |
| 53 | </div> |
| SANDHYA.JS | c84f112 | 2024-06-04 21:50:03 +0530 | [diff] [blame^] | 54 | <div class="modal-footer list border-0 mt-3"> |
| kumaran.m | 3b4814a | 2020-05-01 19:48:54 +0530 | [diff] [blame] | 55 | <button (click)="onVimAccountBack()" |
| 56 | class="btn btn-danger pull-right">{{'PAGE.VIMDETAILS.BACKTOVIMACCOUNTS' | translate}}</button> |
| 57 | </div> |
| 58 | <app-loader [waitingMessage]="message" *ngIf="isLoadingResults"></app-loader> |