14806304f4d767bd0dd04bddf57211c5376aaac9
[usecase-ui.git] /
1 <nz-spin [nzSpinning]="isSpinning">
2   <nz-list class="taskmodel_list" nzBordered [nzHeader]="'Related Slicing Nsi List :'" [nzFooter]="null">
3     <nz-table #nssiTable [nzData]="nsiList" [nzShowPagination]="false" nzHideOnSinglePage class="model-table-padding">
4       <thead>
5         <tr>
6           <th>Service Instance Id</th>
7           <th>Service Instance Name</th>
8           <th>Service Type</th>
9           <th>Status</th>
10           <th width="100px">Detail</th>
11         </tr>
12       </thead>
13       <tbody>
14         <ng-template ngFor let-data [ngForOf]="nssiTable.data" let-i="index">
15           <tr>
16             <td>{{ data.service_instance_id }}</td>
17             <td>{{ data.service_instance_name }}</td>
18             <td>{{ data.service_type }}</td>
19             <td>{{ data.orchestration_status }}</td>
20             <td>
21               <a (click)="showSingleNsiDetail(data)">View Detail</a>
22             </td>
23           </tr>
24         </ng-template>
25       </tbody>
26     </nz-table>
27   </nz-list>
28 </nz-spin>