blob: 0f469192b965bb4bd1e1890f1e30e6d9dc5e6fbc [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="btn-group list action" role="group">
19 <button type="button" class="btn btn-primary" placement="top" container="body" (click)="composeVNFPackages()"
20 ngbTooltip="{{'TOPOLOGY' | translate}}">
21 <i class="fa fa-sitemap fa-fw Icon"></i>
22 </button>
23 <button type="button" class="btn btn-primary" (click)="deleteVNFPackage()" placement="top" container="body"
24 ngbTooltip="{{'DELETE' | translate}}">
25 <i class="far fa-trash-alt icons"></i>
26 </button>
Barath Kumar R208bef22020-07-07 12:28:04 +053027 <div class="btn-group" ngbDropdown display="dynamic" container="body">
kumaran.m3b4814a2020-05-01 19:48:54 +053028 <button type="button" class="btn btn-primary dropdown-toggle action-button" ngbDropdownToggle>
29 {{'ACTION' | translate}}
30 </button>
Barath Kumar R208bef22020-07-07 12:28:04 +053031 <div class="dropdown-menu list-action-dropdown" ngbDropdownMenu>
kumaran.m3b4814a2020-05-01 19:48:54 +053032 <button type="button" class="btn btn-primary dropdown-item" (click)="vnfdEdit()" placement="left"
33 container="body" ngbTooltip="{{'EDIT' | translate}}">
34 <i class="fa fa-edit icons"></i> {{'EDIT' | translate}}
35 </button>
36 <button type="button" class="btn btn-primary dropdown-item" (click)="downloadVNFPackage()" placement="left"
37 container="body" ngbTooltip="{{'DOWNLOAD' | translate}}">
38 <i class="fas fa-download icons"></i> {{'DOWNLOAD' | translate}}
39 </button>
40 <button type="button" class="btn btn-primary dropdown-item" (click)="cloneVNFPackage()" placement="left"
41 container="body" ngbTooltip="{{'CLONE' | translate}}">
42 <i class="fa fa-clone icons"></i> {{'CLONE' | translate}}
43 </button>
44 <button type="button" class="btn btn-primary dropdown-item" (click)="showContent()" placement="left"
45 container="body" ngbTooltip="{{'CONTENT' | translate}}">
46 <i class="far fa-folder-open icons"></i> {{'CONTENT' | translate}}
47 </button>
48 </div>
49 </div>
50</div>
51<app-loader [waitingMessage]="message" *ngIf="isLoadingDownloadResult"></app-loader>