1 <nz-spin [nzSpinning]="isSpinning">
2 <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Related Slicing Nsi List :'" [nzFooter]="null">
6 [nzShowPagination]="false"
8 class="model-table-padding"
12 <th>Service Instance Id</th>
13 <th>Service Instance Name</th>
16 <th width="100px">Detail</th>
20 <ng-template ngFor let-data [ngForOf]="nssiTable.data" let-i="index">
22 <td>{{ data.service_instance_id }}</td>
23 <td>{{ data.service_instance_name }}</td>
24 <td>{{ data.service_type }}</td>
25 <td>{{ data.orchestration_status }}</td>
27 <a (click)="showSingleNsiDetail(data)">View Detail</a>