blob: 80ea8bf6dff2ed506155e2b1190edfd7b8f4af34 [file] [log] [blame]
kumaran.m3b4814a2020-05-01 19:48:54 +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: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in)
17-->
18<div class="row d-flex flex-row justify-content-between">
Barath Kumar R1245fc82021-04-16 13:34:06 +053019 <div class="col-sm-4">
20 <div class="d-flex align-items-center header-style">{{'PAGE.VIMDETAILS.VIMACCOUNTDETAILS' | translate}}</div>
21 </div>
22 <div class="col-sm-8 text-right">
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>&nbsp;
27 {{'PAGE.VIMDETAILS.NEWVIM' | translate}}
28 </button>
29 </span>
30 </div>
kumaran.m3b4814a2020-05-01 19:48:54 +053031</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>
40<div class="col-12">
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 Rd477b852020-07-07 15:24:05 +053048 <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.m3b4814a2020-05-01 19:48:54 +053051 </div>
52 </div>
53</div>
Barath Kumar Rd477b852020-07-07 15:24:05 +053054<div class="modal-footer list border-0">
kumaran.m3b4814a2020-05-01 19:48:54 +053055 <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>