]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
29ebbe645d131d53c067122fc5e426f5452e1211
[ceph-ci.git] /
1 <legend>
2   <cd-help-text>
3       The client that connects to the NVMe-oF target to access NVMe storage.
4   </cd-help-text>
5 </legend>
6 <cd-table [data]="initiators"
7           columnMode="flex"
8           (fetchData)="listInitiators()"
9           [columns]="initiatorColumns"
10           selectionType="multiClick"
11           (updateSelection)="updateSelection($event)">
12   <div class="table-actions btn-toolbar">
13     <cd-table-actions [permission]="permission"
14                       [selection]="selection"
15                       class="btn-group"
16                       [tableActions]="tableActions">
17     </cd-table-actions>
18   </div>
19 </cd-table>
20 <ng-template #hostTpl
21              let-value="value">
22   <span *ngIf="value === '*'"
23         i18n
24         class="font-monospace">Any host allowed (*)</span>
25   <span *ngIf="value !== '*'"
26         class="font-monospace">{{value}}</span>
27 </ng-template>